From f2127fec97f73d639299abde8b388e73bdc9ec8a Mon Sep 17 00:00:00 2001 From: Erica Fischer Date: Tue, 14 Feb 2023 12:47:40 -0800 Subject: [PATCH] Reduce thrashing during feature ingestion and tiling (#56) * Remove the concept of "separate metadata" This was an extra level of attribute indirection (features point to metadata records which point to key and value strings) which was intended to reduce the size of temporary storage for features with large numbers of attributes that were also spread across large numbers of tiles at maxzoom. For other kinds of features, the extra indirection slowed things down instead, and, especially when maxzoom guessing was being used, many more features were having their metadata externalized than could actually benefit from it. * Shave a few bytes off temporary files by using more unsigned integers * Flush stderr after logging progress * Revert "Shave a few bytes off temporary files by using more unsigned integers" This reverts commit eef29084eced10ec9ca05925d18f0541ab94043c. * Limit the size of the string pools and trees to fit in memory * Add missing #include * Move the string pool and search tree from mmap to allocated memory * Sort in allocated rather than mapped memory too * Also use pread instead of mapping to read in the data to sort * When the pool gets too big, switch to just the file, not memory * Switch string pool from memory to disk when memory is 10% full * Add to-memory versions of the serialization functions * Crashy work in progress toward compression * Fix the pointer bug that was causing the crash * Serialize features into memory rather than straight to disk * Compress individual features in the temporary files * Don't need to store the length of the geometry * Remove per-feature compression; move minzoom back into the object * Start adding a stream compressor object * Track file position within fwrite_check() * Add compressed stream writer functions * Pull the writing of the serialized feature out to the callers * Starting toward compression again from a different point * Hook up more compression functions * Remove unused code from the other day * Make enough deflate calls to flush out all the buffered data * Start on decompression * Tile number is uncompressed, tile content is compressed * Work on alternating compressed and uncompressed in decompression * Closer, but still doesn't work * Sort of works * Works until we get to concatenated tiles * More attempts that don't work * One bug down * It made a tileset! * Handle nonzero initial zooms * Fix seeking within compressed feature streams * Tests pass! * Remove debug spew * Oops: remember to delete the temporary files so they don't hang around * Test that fails with the current compression code * Properly account for bytes read while closing the compressed stream * Limit the number of warnings about bad label points * A little more armor when closing decompression * This time for sure * A different, less fragile, test that failed previously with compression * Move feature stream compression to its own file * Remove now-unused code to deserialize from a file * Forgot to add the new files * Remove a little debugging logging * Add a couple of comments on what it means to be within decompression * Fix indentation * Update changelog. Remove stray debugging comment. --- CHANGELOG.md | 7 + Makefile | 4 +- compression.cpp | 269 + compression.hpp | 58 + geometry.cpp | 24 +- geometry.hpp | 2 +- main.cpp | 233 +- main.hpp | 2 + memfile.cpp | 73 +- memfile.hpp | 13 +- mvt.cpp | 4 +- mvt.hpp | 2 +- plugin.cpp | 1 - pmtiles_file.cpp | 5 +- pool.cpp | 46 +- serial.cpp | 296 +- serial.hpp | 35 +- ..._-Z15_--drop-smallest-as-needed_-M300.json | 84886 ++++++++++++++++ tests/pointlm/tl_2021_18_pointlm.shp.json.gz | Bin 0 -> 769065 bytes tile-join.cpp | 4 +- tile.cpp | 153 +- tile.hpp | 4 +- version.hpp | 2 +- 23 files changed, 85673 insertions(+), 450 deletions(-) create mode 100644 compression.cpp create mode 100644 compression.hpp create mode 100644 tests/pointlm/out/-z15_-Z15_--drop-smallest-as-needed_-M300.json create mode 100644 tests/pointlm/tl_2021_18_pointlm.shp.json.gz diff --git a/CHANGELOG.md b/CHANGELOG.md index a4e7724bb..84aaadf65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 2.23.0 + +* Remove the concept of "separate metadata." Features now always directly reference their keys and values rather than going through a second level of indirection. +* Limit the size of the string pool to 1/5 the size of memory, to prevent thrashing during feature ingestion. +* Avoid using writeable memory maps. Instead, explicitly copy data in and out of memory. +* Compress streams of features in the temporary files, to reduce disk usage and I/O latency + ## 2.22.0 * Speed up feature dropping by removing unnecessary search for other small features diff --git a/Makefile b/Makefile index e9404087c..f07031054 100644 --- a/Makefile +++ b/Makefile @@ -47,7 +47,7 @@ C = $(wildcard *.c) $(wildcard *.cpp) INCLUDES = -I/usr/local/include -I. LIBS = -L/usr/local/lib -tippecanoe: geojson.o jsonpull/jsonpull.o tile.o pool.o mbtiles.o geometry.o projection.o memfile.o mvt.o serial.o main.o text.o dirtiles.o pmtiles_file.o plugin.o read_json.o write_json.o geobuf.o flatgeobuf.o evaluator.o geocsv.o csv.o geojson-loop.o json_logger.o visvalingam.o +tippecanoe: geojson.o jsonpull/jsonpull.o tile.o pool.o mbtiles.o geometry.o projection.o memfile.o mvt.o serial.o main.o text.o dirtiles.o pmtiles_file.o plugin.o read_json.o write_json.o geobuf.o flatgeobuf.o evaluator.o geocsv.o csv.o geojson-loop.o json_logger.o visvalingam.o compression.o $(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3 -lpthread tippecanoe-enumerate: enumerate.o @@ -56,7 +56,7 @@ tippecanoe-enumerate: enumerate.o tippecanoe-decode: decode.o projection.o mvt.o write_json.o text.o jsonpull/jsonpull.o dirtiles.o pmtiles_file.o $(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3 -tile-join: tile-join.o projection.o pool.o mbtiles.o mvt.o memfile.o dirtiles.o jsonpull/jsonpull.o text.o evaluator.o csv.o write_json.o pmtiles_file.o +tile-join: tile-join.o projection.o mbtiles.o mvt.o memfile.o dirtiles.o jsonpull/jsonpull.o text.o evaluator.o csv.o write_json.o pmtiles_file.o $(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3 -lpthread tippecanoe-json-tool: jsontool.o jsonpull/jsonpull.o csv.o text.o geojson-loop.o diff --git a/compression.cpp b/compression.cpp new file mode 100644 index 000000000..4506afc1a --- /dev/null +++ b/compression.cpp @@ -0,0 +1,269 @@ +#ifdef __APPLE__ +#define _DARWIN_UNLIMITED_STREAMS +#endif + +#include "compression.hpp" +#include "errors.hpp" +#include "protozero/varint.hpp" +#include "serial.hpp" + +void decompressor::begin() { + within = true; + + zs.zalloc = NULL; + zs.zfree = NULL; + zs.opaque = NULL; + zs.msg = (char *) ""; + + int d = inflateInit(&zs); + if (d != Z_OK) { + fprintf(stderr, "initialize decompression: %d %s\n", d, zs.msg); + exit(EXIT_IMPOSSIBLE); + } +} + +int decompressor::fread(void *p, size_t size, size_t nmemb, std::atomic *geompos) { + zs.next_out = (Bytef *) p; + zs.avail_out = size * nmemb; + + while (zs.avail_out > 0) { + if (zs.avail_in == 0) { + size_t n = ::fread((Bytef *) buf.c_str(), sizeof(char), buf.size(), fp); + if (n == 0) { + if (within) { + fprintf(stderr, "Reached EOF while decompressing\n"); + exit(EXIT_IMPOSSIBLE); + } else { + break; + } + } + zs.next_in = (Bytef *) buf.c_str(); + zs.avail_in = n; + } + + size_t avail_before = zs.avail_in; + + if (within) { + int d = inflate(&zs, Z_NO_FLUSH); + *geompos += avail_before - zs.avail_in; + + if (d == Z_OK) { + // it made some progress + } else if (d == Z_STREAM_END) { + // it may have made some progress and now we are done + within = false; + break; + } else { + fprintf(stderr, "decompression error %d %s\n", d, zs.msg); + exit(EXIT_IMPOSSIBLE); + } + } else { + size_t n = std::min(zs.avail_in, zs.avail_out); + memcpy(zs.next_out, zs.next_in, n); + *geompos += n; + + zs.avail_out -= n; + zs.avail_in -= n; + zs.next_out += n; + zs.next_in += n; + } + } + + return (size * nmemb - zs.avail_out) / size; +} + +void decompressor::end(std::atomic *geompos) { + // "within" means that we haven't received end-of-stream yet, + // so consume more compressed data until we get there. + // This can be necessary if the caller knows that it is at + // the end of the feature stream (because it got a 0-length + // feature) but the decompressor doesn't know yet. + + if (within) { + while (true) { + if (zs.avail_in == 0) { + size_t n = ::fread((Bytef *) buf.c_str(), sizeof(char), buf.size(), fp); + zs.next_in = (Bytef *) buf.c_str(); + zs.avail_in = n; + } + + zs.avail_out = 0; + + size_t avail_before = zs.avail_in; + int d = inflate(&zs, Z_NO_FLUSH); + *geompos += avail_before - zs.avail_in; + + if (d == Z_STREAM_END) { + break; + } + if (d == Z_OK) { + continue; + } + + fprintf(stderr, "decompression: got %d, not Z_STREAM_END\n", d); + exit(EXIT_IMPOSSIBLE); + } + + within = false; + } + + int d = inflateEnd(&zs); + if (d != Z_OK) { + fprintf(stderr, "end decompression: %d %s\n", d, zs.msg); + exit(EXIT_IMPOSSIBLE); + } +} + +int decompressor::deserialize_ulong_long(unsigned long long *zigzag, std::atomic *geompos) { + *zigzag = 0; + int shift = 0; + + while (1) { + char c; + if (fread(&c, sizeof(char), 1, geompos) != 1) { + return 0; + } + + if ((c & 0x80) == 0) { + *zigzag |= ((unsigned long long) c) << shift; + shift += 7; + break; + } else { + *zigzag |= ((unsigned long long) (c & 0x7F)) << shift; + shift += 7; + } + } + + return 1; +} + +int decompressor::deserialize_long_long(long long *n, std::atomic *geompos) { + unsigned long long zigzag = 0; + int ret = deserialize_ulong_long(&zigzag, geompos); + *n = protozero::decode_zigzag64(zigzag); + return ret; +} + +int decompressor::deserialize_int(int *n, std::atomic *geompos) { + long long ll = 0; + int ret = deserialize_long_long(&ll, geompos); + *n = ll; + return ret; +} + +int decompressor::deserialize_uint(unsigned *n, std::atomic *geompos) { + unsigned long long v; + deserialize_ulong_long(&v, geompos); + *n = v; + return 1; +} + +void compressor::begin() { + zs.zalloc = NULL; + zs.zfree = NULL; + zs.opaque = NULL; + zs.msg = (char *) ""; + + int d = deflateInit(&zs, Z_DEFAULT_COMPRESSION); + if (d != Z_OK) { + fprintf(stderr, "initialize compression: %d %s\n", d, zs.msg); + exit(EXIT_IMPOSSIBLE); + } +} + +void compressor::compressor::end(std::atomic *fpos, const char *fname) { + std::string buf; + buf.resize(5000); + + if (zs.avail_in != 0) { + fprintf(stderr, "compression end called with data available\n"); + exit(EXIT_IMPOSSIBLE); + } + + zs.next_in = (Bytef *) buf.c_str(); + zs.avail_in = 0; + + while (true) { + zs.next_out = (Bytef *) buf.c_str(); + zs.avail_out = buf.size(); + + int d = deflate(&zs, Z_FINISH); + ::fwrite_check(buf.c_str(), sizeof(char), zs.next_out - (Bytef *) buf.c_str(), fp, fpos, fname); + + if (d == Z_OK || d == Z_BUF_ERROR) { + // it can take several calls to flush out all the buffered data + continue; + } + + if (d != Z_STREAM_END) { + fprintf(stderr, "%s: finish compression: %d %s\n", fname, d, zs.msg); + exit(EXIT_IMPOSSIBLE); + } + + break; + } + + zs.next_out = (Bytef *) buf.c_str(); + zs.avail_out = buf.size(); + + int d = deflateEnd(&zs); + if (d != Z_OK) { + fprintf(stderr, "%s: end compression: %d %s\n", fname, d, zs.msg); + exit(EXIT_IMPOSSIBLE); + } + + ::fwrite_check(buf.c_str(), sizeof(char), zs.next_out - (Bytef *) buf.c_str(), fp, fpos, fname); +} + +int compressor::fclose() { + return ::fclose(fp); +} + +void compressor::fwrite_check(const char *p, size_t size, size_t nmemb, std::atomic *fpos, const char *fname) { + std::string buf; + buf.resize(size * nmemb * 2 + 200); + + zs.next_in = (Bytef *) p; + zs.avail_in = size * nmemb; + + while (zs.avail_in > 0) { + zs.next_out = (Bytef *) buf.c_str(); + zs.avail_out = buf.size(); + + int d = deflate(&zs, Z_NO_FLUSH); + if (d != Z_OK) { + fprintf(stderr, "%s: deflate: %d %s\n", fname, d, zs.msg); + exit(EXIT_IMPOSSIBLE); + } + + ::fwrite_check(buf.c_str(), sizeof(char), zs.next_out - (Bytef *) buf.c_str(), fp, fpos, fname); + } +} + +void compressor::serialize_ulong_long(unsigned long long val, std::atomic *fpos, const char *fname) { + while (1) { + unsigned char b = val & 0x7F; + if ((val >> 7) != 0) { + b |= 0x80; + fwrite_check((const char *) &b, 1, 1, fpos, fname); + val >>= 7; + } else { + fwrite_check((const char *) &b, 1, 1, fpos, fname); + break; + } + } +} + +void compressor::serialize_long_long(long long val, std::atomic *fpos, const char *fname) { + unsigned long long zigzag = protozero::encode_zigzag64(val); + + serialize_ulong_long(zigzag, fpos, fname); +} + +void compressor::serialize_int(int val, std::atomic *fpos, const char *fname) { + serialize_long_long(val, fpos, fname); +} + +void compressor::serialize_uint(unsigned val, std::atomic *fpos, const char *fname) { + serialize_ulong_long(val, fpos, fname); +} diff --git a/compression.hpp b/compression.hpp new file mode 100644 index 000000000..f55d46920 --- /dev/null +++ b/compression.hpp @@ -0,0 +1,58 @@ +#ifdef __APPLE__ +#define _DARWIN_UNLIMITED_STREAMS +#endif + +#include +#include +#include +#include + +struct decompressor { + FILE *fp = NULL; + z_stream zs; + std::string buf; + + // from begin() to receiving end-of-stream + bool within = false; + + decompressor(FILE *f) { + fp = f; + buf.resize(5000); + + zs.next_in = (Bytef *) buf.c_str(); + zs.avail_in = 0; + } + + decompressor() { + } + + void begin(); + int fread(void *p, size_t size, size_t nmemb, std::atomic *geompos); + void end(std::atomic *geompos); + int deserialize_ulong_long(unsigned long long *zigzag, std::atomic *geompos); + int deserialize_long_long(long long *n, std::atomic *geompos); + int deserialize_int(int *n, std::atomic *geompos); + int deserialize_uint(unsigned *n, std::atomic *geompos); +}; + +struct compressor { + FILE *fp = NULL; + z_stream zs; + + compressor(FILE *f) { + fp = f; + } + + compressor() { + } + + void begin(); + void end(std::atomic *fpos, const char *fname); + int fclose(); + void fwrite_check(const char *p, size_t size, size_t nmemb, std::atomic *fpos, const char *fname); + void serialize_ulong_long(unsigned long long val, std::atomic *fpos, const char *fname); + + void serialize_long_long(long long val, std::atomic *fpos, const char *fname); + void serialize_int(int val, std::atomic *fpos, const char *fname); + void serialize_uint(unsigned val, std::atomic *fpos, const char *fname); +}; diff --git a/geometry.cpp b/geometry.cpp index 873fda088..b5c1836ca 100644 --- a/geometry.cpp +++ b/geometry.cpp @@ -25,7 +25,7 @@ static int clip(double *x0, double *y0, double *x1, double *y1, double xmin, double ymin, double xmax, double ymax); -drawvec decode_geometry(FILE *meta, std::atomic *geompos, int z, unsigned tx, unsigned ty, long long *bbox, unsigned initial_x, unsigned initial_y) { +drawvec decode_geometry(char **meta, int z, unsigned tx, unsigned ty, long long *bbox, unsigned initial_x, unsigned initial_y) { drawvec out; bbox[0] = LLONG_MAX; @@ -38,10 +38,7 @@ drawvec decode_geometry(FILE *meta, std::atomic *geompos, int z, unsi while (1) { draw d; - if (!deserialize_byte_io(meta, &d.op, geompos)) { - fprintf(stderr, "Internal error: Unexpected end of file in geometry\n"); - exit(EXIT_IMPOSSIBLE); - } + deserialize_byte(meta, &d.op); if (d.op == VT_END) { break; } @@ -49,8 +46,8 @@ drawvec decode_geometry(FILE *meta, std::atomic *geompos, int z, unsi if (d.op == VT_MOVETO || d.op == VT_LINETO) { long long dx, dy; - deserialize_long_long_io(meta, &dx, geompos); - deserialize_long_long_io(meta, &dy, geompos); + deserialize_long_long(meta, &dx); + deserialize_long_long(meta, &dy); wx += dx * (1 << geometry_scale); wy += dy * (1 << geometry_scale); @@ -1541,7 +1538,8 @@ struct sorty { struct sorty_sorter { int kind; - sorty_sorter(int k) : kind(k) {}; + sorty_sorter(int k) + : kind(k){}; bool operator()(const sorty &a, const sorty &b) const { long long xa, ya, xb, yb; @@ -1552,13 +1550,13 @@ struct sorty_sorter { xb = b.x; yb = b.y; - } else if (kind == 1) { // X first + } else if (kind == 1) { // X first xa = a.y; ya = a.x; xb = b.y; yb = b.x; - } else if (kind == 2) { // diagonal + } else if (kind == 2) { // diagonal xa = a.x + a.y; ya = a.x - a.y; @@ -1775,7 +1773,11 @@ drawvec polygon_to_anchor(const drawvec &geom) { if (goodness <= 0) { double lon, lat; tile2lonlat(d.x, d.y, 32, &lon, &lat); - fprintf(stderr, "could not find label point: %s %f,%f\n", kind, lat, lon); + + static std::atomic warned(0); + if (warned++ < 10) { + fprintf(stderr, "could not find good label point: %s %f,%f\n", kind, lat, lon); + } } } diff --git a/geometry.hpp b/geometry.hpp index f3dc78d86..0e49ead0f 100644 --- a/geometry.hpp +++ b/geometry.hpp @@ -58,7 +58,7 @@ struct draw { typedef std::vector drawvec; struct serial_feature; -drawvec decode_geometry(FILE *meta, std::atomic *geompos, int z, unsigned tx, unsigned ty, long long *bbox, unsigned initial_x, unsigned initial_y); +drawvec decode_geometry(char **meta, int z, unsigned tx, unsigned ty, long long *bbox, unsigned initial_x, unsigned initial_y); void to_tile_scale(drawvec &geom, int z, int detail); drawvec from_tile_scale(drawvec const &geom, int z, int detail); drawvec remove_noop(drawvec geom, int type, int shift); diff --git a/main.cpp b/main.cpp index 49f0d04e9..4df860438 100644 --- a/main.cpp +++ b/main.cpp @@ -105,6 +105,7 @@ struct source { size_t CPUS; size_t TEMP_FILES; long long MAX_FILES; +size_t memsize; static long long diskfree; char **av; @@ -113,9 +114,9 @@ std::vector clipbboxes; void checkdisk(std::vector *r) { long long used = 0; for (size_t i = 0; i < r->size(); i++) { - // Meta, pool, and tree are used once. + // Pool and tree are used once. // Geometry and index will be duplicated during sorting and tiling. - used += (*r)[i].metapos + 2 * (*r)[i].geompos + 2 * (*r)[i].indexpos + (*r)[i].poolfile->len + (*r)[i].treefile->len; + used += 2 * (*r)[i].geompos + 2 * (*r)[i].indexpos + (*r)[i].poolfile->off + (*r)[i].treefile->off; } static int warned = 0; @@ -326,8 +327,11 @@ static void merge(struct mergelist *merges, size_t nmerges, unsigned char *map, while (head != NULL) { struct index ix = *((struct index *) (map + head->start)); long long pos = *geompos; - fwrite_check(geom_map + ix.start, 1, ix.end - ix.start, geom_out, "merge geometry"); - *geompos += ix.end - ix.start; + + // MAGIC: This knows that the feature minzoom is the last byte of the serialized feature + // and is writing one byte less and then adding the byte for the minzoom. + + fwrite_check(geom_map + ix.start, 1, ix.end - ix.start - 1, geom_out, geompos, "merge geometry"); int feature_minzoom = calc_feature_minzoom(&ix, ds, maxzoom, gamma); serialize_byte(geom_out, feature_minzoom, geompos, "merge geometry"); @@ -335,12 +339,14 @@ static void merge(struct mergelist *merges, size_t nmerges, unsigned char *map, *progress += (ix.end - ix.start) * 3 / 4; if (!quiet && !quiet_progress && progress_time() && 100 * *progress / *progress_max != *progress_reported) { fprintf(stderr, "Reordering geometry: %lld%% \r", 100 * *progress / *progress_max); + fflush(stderr); *progress_reported = 100 * *progress / *progress_max; } ix.start = pos; ix.end = *geompos; - fwrite_check(&ix, bytes, 1, indexfile, "merge temporary"); + std::atomic indexpos; + fwrite_check(&ix, bytes, 1, indexfile, &indexpos, "merge temporary"); head->start += bytes; struct mergelist *m = head; @@ -382,32 +388,25 @@ void *run_sort(void *v) { a->merges[start / a->unit].end = end; a->merges[start / a->unit].next = NULL; - // MAP_PRIVATE to avoid disk writes if it fits in memory - void *map = mmap(NULL, end - start, PROT_READ | PROT_WRITE, MAP_PRIVATE, a->indexfd, start); - if (map == MAP_FAILED) { - perror("mmap in run_sort"); - exit(EXIT_MEMORY); - } - madvise(map, end - start, MADV_RANDOM); - madvise(map, end - start, MADV_WILLNEED); - - qsort(map, (end - start) / a->bytes, a->bytes, indexcmp); + // Read section of index into memory to sort and then use pwrite() + // to write it back out rather than sorting in mapped memory, + // because writable mapped memory seems to have bad performance + // problems on ECS (and maybe in containers in general)? - // Sorting and then copying avoids disk access to - // write out intermediate stages of the sort. + std::string s; + s.resize(end - start); - void *map2 = mmap(NULL, end - start, PROT_READ | PROT_WRITE, MAP_SHARED, a->indexfd, start); - if (map2 == MAP_FAILED) { - perror("mmap (write)"); - exit(EXIT_MEMORY); + if (pread(a->indexfd, (void *) s.c_str(), end - start, start) != end - start) { + fprintf(stderr, "pread(index): %s\n", strerror(errno)); + exit(EXIT_READ); } - madvise(map2, end - start, MADV_SEQUENTIAL); - memcpy(map2, map, end - start); + qsort((void *) s.c_str(), (end - start) / a->bytes, a->bytes, indexcmp); - // No madvise, since caller will want the sorted data - munmap(map, end - start); - munmap(map2, end - start); + if (pwrite(a->indexfd, s.c_str(), end - start, start) != end - start) { + fprintf(stderr, "pwrite(index): %s\n", strerror(errno)); + exit(EXIT_WRITE); + } } return NULL; @@ -788,20 +787,21 @@ void radix1(int *geomfds_in, int *indexfds_in, int inputs, int prefix, int split unsigned long long which = (ix.ix << prefix) >> (64 - splitbits); long long pos = sub_geompos[which]; - fwrite_check(geommap + ix.start, ix.end - ix.start, 1, geomfiles[which], "geom"); - sub_geompos[which] += ix.end - ix.start; + fwrite_check(geommap + ix.start, ix.end - ix.start, 1, geomfiles[which], &sub_geompos[which], "geom"); // Count this as a 25%-accomplishment, since we will copy again *progress += (ix.end - ix.start) / 4; if (!quiet && !quiet_progress && progress_time() && 100 * *progress / *progress_max != *progress_reported) { fprintf(stderr, "Reordering geometry: %lld%% \r", 100 * *progress / *progress_max); + fflush(stderr); *progress_reported = 100 * *progress / *progress_max; } ix.start = pos; ix.end = sub_geompos[which]; - fwrite_check(&ix, sizeof(struct index), 1, indexfiles[which], "index"); + std::atomic indexpos; + fwrite_check(&ix, sizeof(struct index), 1, indexfiles[which], &indexpos, "index"); } madvise(indexmap, indexst.st_size, MADV_DONTNEED); @@ -958,8 +958,7 @@ void radix1(int *geomfds_in, int *indexfds_in, int inputs, int prefix, int split struct index ix = indexmap[a]; long long pos = *geompos_out; - fwrite_check(geommap + ix.start, ix.end - ix.start, 1, geomfile, "geom"); - *geompos_out += ix.end - ix.start; + fwrite_check(geommap + ix.start, ix.end - ix.start, 1, geomfile, geompos_out, "geom"); int feature_minzoom = calc_feature_minzoom(&ix, ds, maxzoom, gamma); serialize_byte(geomfile, feature_minzoom, geompos_out, "merge geometry"); @@ -967,12 +966,14 @@ void radix1(int *geomfds_in, int *indexfds_in, int inputs, int prefix, int split *progress += (ix.end - ix.start) * 3 / 4; if (!quiet && !quiet_progress && progress_time() && 100 * *progress / *progress_max != *progress_reported) { fprintf(stderr, "Reordering geometry: %lld%% \r", 100 * *progress / *progress_max); + fflush(stderr); *progress_reported = 100 * *progress / *progress_max; } ix.start = pos; ix.end = *geompos_out; - fwrite_check(&ix, sizeof(struct index), 1, indexfile, "index"); + std::atomic indexpos; + fwrite_check(&ix, sizeof(struct index), 1, indexfile, &indexpos, "index"); } madvise(indexmap, indexst.st_size, MADV_DONTNEED); @@ -1028,17 +1029,8 @@ void prep_drop_states(struct drop_state *ds, int maxzoom, int basezoom, double d } } -void radix(std::vector &readers, int nreaders, FILE *geomfile, FILE *indexfile, const char *tmpdir, std::atomic *geompos, int maxzoom, int basezoom, double droprate, double gamma) { - // Run through the index and geometry for each reader, - // splitting the contents out by index into as many - // sub-files as we can write to simultaneously. - - // Then sort each of those by index, recursively if it is - // too big to fit in memory. - - // Then concatenate each of the sub-outputs into a final output. - - long long mem; +static size_t calc_memsize() { + size_t mem; #ifdef __APPLE__ int64_t hw_memsize; @@ -1059,6 +1051,21 @@ void radix(std::vector &readers, int nreaders, FILE *geomfile, FI mem = (long long) pages * pagesize; #endif + return mem; +} + +void radix(std::vector &readers, int nreaders, FILE *geomfile, FILE *indexfile, const char *tmpdir, std::atomic *geompos, int maxzoom, int basezoom, double droprate, double gamma) { + // Run through the index and geometry for each reader, + // splitting the contents out by index into as many + // sub-files as we can write to simultaneously. + + // Then sort each of those by index, recursively if it is + // too big to fit in memory. + + // Then concatenate each of the sub-outputs into a final output. + + long long mem = memsize; + // Just for code coverage testing. Deeply recursive sorting is very slow // compared to sorting in memory. if (additional[A_PREFER_RADIX_SORT]) { @@ -1066,7 +1073,7 @@ void radix(std::vector &readers, int nreaders, FILE *geomfile, FI } long long availfiles = MAX_FILES - 2 * nreaders // each reader has a geom and an index - - 4 // pool, meta, mbtiles, mbtiles journal + - 3 // pool, mbtiles, mbtiles journal - 4 // top-level geom and index output, both FILE and fd - 3; // stdin, stdout, stderr @@ -1164,23 +1171,16 @@ std::pair read_input(std::vector &sources, char *fname, i for (size_t i = 0; i < CPUS; i++) { struct reader *r = &readers[i]; - char metaname[strlen(tmpdir) + strlen("/meta.XXXXXXXX") + 1]; char poolname[strlen(tmpdir) + strlen("/pool.XXXXXXXX") + 1]; char treename[strlen(tmpdir) + strlen("/tree.XXXXXXXX") + 1]; char geomname[strlen(tmpdir) + strlen("/geom.XXXXXXXX") + 1]; char indexname[strlen(tmpdir) + strlen("/index.XXXXXXXX") + 1]; - sprintf(metaname, "%s%s", tmpdir, "/meta.XXXXXXXX"); sprintf(poolname, "%s%s", tmpdir, "/pool.XXXXXXXX"); sprintf(treename, "%s%s", tmpdir, "/tree.XXXXXXXX"); sprintf(geomname, "%s%s", tmpdir, "/geom.XXXXXXXX"); sprintf(indexname, "%s%s", tmpdir, "/index.XXXXXXXX"); - r->metafd = mkstemp_cloexec(metaname); - if (r->metafd < 0) { - perror(metaname); - exit(EXIT_OPEN); - } r->poolfd = mkstemp_cloexec(poolname); if (r->poolfd < 0) { perror(poolname); @@ -1202,11 +1202,6 @@ std::pair read_input(std::vector &sources, char *fname, i exit(EXIT_OPEN); } - r->metafile = fopen_oflag(metaname, "wb", O_WRONLY | O_CLOEXEC); - if (r->metafile == NULL) { - perror(metaname); - exit(EXIT_OPEN); - } r->poolfile = memfile_open(r->poolfd); if (r->poolfile == NULL) { perror(poolname); @@ -1227,11 +1222,9 @@ std::pair read_input(std::vector &sources, char *fname, i perror(indexname); exit(EXIT_OPEN); } - r->metapos = 0; r->geompos = 0; r->indexpos = 0; - unlink(metaname); unlink(poolname); unlink(treename); unlink(geomname); @@ -1242,8 +1235,6 @@ std::pair read_input(std::vector &sources, char *fname, i struct stringpool p; memfile_write(r->treefile, &p, sizeof(struct stringpool)); } - // Keep metadata file from being completely empty if no attributes - serialize_int(r->metafile, 0, &r->metapos, "meta"); r->file_bbox[0] = r->file_bbox[1] = UINT_MAX; r->file_bbox[2] = r->file_bbox[3] = 0; @@ -1674,7 +1665,8 @@ std::pair read_input(std::vector &sources, char *fname, i int n; while ((n = fp->read(buf, READ_BUF)) > 0) { - fwrite_check(buf, sizeof(char), n, readfp, reading.c_str()); + std::atomic readingpos; + fwrite_check(buf, sizeof(char), n, readfp, &readingpos, reading.c_str()); ahead += n; if (buf[n - 1] == read_parallel_this && ahead > PARSE_MIN) { @@ -1803,13 +1795,10 @@ std::pair read_input(std::vector &sources, char *fname, i if (!quiet) { fprintf(stderr, " \r"); // (stderr, "Read 10000.00 million features\r", *progress_seq / 1000000.0); + fflush(stderr); } for (size_t i = 0; i < CPUS; i++) { - if (fclose(readers[i].metafile) != 0) { - perror("fclose meta"); - exit(EXIT_CLOSE); - } if (fclose(readers[i].geomfile) != 0) { perror("fclose geom"); exit(EXIT_CLOSE); @@ -1824,21 +1813,16 @@ std::pair read_input(std::vector &sources, char *fname, i perror("stat geom\n"); exit(EXIT_STAT); } - if (fstat(readers[i].metafd, &readers[i].metast) != 0) { - perror("stat meta\n"); - exit(EXIT_STAT); - } } - // Create a combined string pool and a combined metadata file + // Create a combined string pool // but keep track of the offsets into it since we still need // segment+offset to find the data. // 2 * CPUS: One per input thread, one per tiling thread long long pool_off[2 * CPUS]; - long long meta_off[2 * CPUS]; for (size_t i = 0; i < 2 * CPUS; i++) { - pool_off[i] = meta_off[i] = 0; + pool_off[i] = 0; } char poolname[strlen(tmpdir) + strlen("/pool.XXXXXXXX") + 1]; @@ -1858,60 +1842,51 @@ std::pair read_input(std::vector &sources, char *fname, i unlink(poolname); - char metaname[strlen(tmpdir) + strlen("/meta.XXXXXXXX") + 1]; - sprintf(metaname, "%s%s", tmpdir, "/meta.XXXXXXXX"); + std::atomic poolpos(0); - int metafd = mkstemp_cloexec(metaname); - if (metafd < 0) { - perror(metaname); - exit(EXIT_OPEN); - } + for (size_t i = 0; i < CPUS; i++) { + // If the memfile is not done yet, it is in memory, so just copy the memory. + // Otherwise, we need to merge memory and file. - FILE *metafile = fopen_oflag(metaname, "wb", O_WRONLY | O_CLOEXEC); - if (metafile == NULL) { - perror(metaname); - exit(EXIT_OPEN); - } + if (readers[i].poolfile->fp == NULL) { + // still in memory - unlink(metaname); + if (readers[i].poolfile->map.size() > 0) { + if (fwrite(readers[i].poolfile->map.c_str(), readers[i].poolfile->map.size(), 1, poolfile) != 1) { + perror("Reunify string pool"); + exit(EXIT_WRITE); + } + } - std::atomic metapos(0); - std::atomic poolpos(0); + pool_off[i] = poolpos; + poolpos += readers[i].poolfile->map.size(); + } else { + // split into memory and file - for (size_t i = 0; i < CPUS; i++) { - if (readers[i].metapos > 0) { - void *map = mmap(NULL, readers[i].metapos, PROT_READ, MAP_PRIVATE, readers[i].metafd, 0); - if (map == MAP_FAILED) { - perror("mmap unmerged meta"); + if (fflush(readers[i].poolfile->fp) != 0) { + perror("fflush poolfile"); + exit(EXIT_WRITE); + } + + char *s = (char *) mmap(NULL, readers[i].poolfile->off, PROT_READ, MAP_PRIVATE, readers[i].poolfile->fd, 0); + if (s == MAP_FAILED) { + perror("mmap string pool for copy"); exit(EXIT_MEMORY); } - madvise(map, readers[i].metapos, MADV_SEQUENTIAL); - madvise(map, readers[i].metapos, MADV_WILLNEED); - if (fwrite(map, readers[i].metapos, 1, metafile) != 1) { - perror("Reunify meta"); + madvise(s, readers[i].poolfile->off, MADV_SEQUENTIAL); + if (fwrite(s, sizeof(char), readers[i].poolfile->off, poolfile) != readers[i].poolfile->off) { + perror("Reunify string pool (split)"); exit(EXIT_WRITE); } - madvise(map, readers[i].metapos, MADV_DONTNEED); - if (munmap(map, readers[i].metapos) != 0) { - perror("unmap unmerged meta"); + if (munmap(s, readers[i].poolfile->off) != 0) { + perror("unmap string pool for copy"); + exit(EXIT_MEMORY); } - } - meta_off[i] = metapos; - metapos += readers[i].metapos; - if (close(readers[i].metafd) != 0) { - perror("close unmerged meta"); + pool_off[i] = poolpos; + poolpos += readers[i].poolfile->off; } - if (readers[i].poolfile->off > 0) { - if (fwrite(readers[i].poolfile->map, readers[i].poolfile->off, 1, poolfile) != 1) { - perror("Reunify string pool"); - exit(EXIT_WRITE); - } - } - - pool_off[i] = poolpos; - poolpos += readers[i].poolfile->off; memfile_close(readers[i].poolfile); } @@ -1919,17 +1894,6 @@ std::pair read_input(std::vector &sources, char *fname, i perror("fclose pool"); exit(EXIT_CLOSE); } - if (fclose(metafile) != 0) { - perror("fclose meta"); - exit(EXIT_CLOSE); - } - - char *meta = (char *) mmap(NULL, metapos, PROT_READ, MAP_PRIVATE, metafd, 0); - if (meta == MAP_FAILED) { - perror("mmap meta"); - exit(EXIT_MEMORY); - } - madvise(meta, metapos, MADV_RANDOM); char *stringpool = NULL; if (poolpos > 0) { // Will be 0 if -X was specified @@ -1983,7 +1947,7 @@ std::pair read_input(std::vector &sources, char *fname, i std::atomic geompos(0); - /* initial tile is 0/0/0 */ + /* initial tile is normally 0/0/0 but can be iz/ix/iy if limited to one tile */ serialize_int(geomfile, iz, &geompos, fname); serialize_uint(geomfile, ix, &geompos, fname); serialize_uint(geomfile, iy, &geompos, fname); @@ -1991,7 +1955,7 @@ std::pair read_input(std::vector &sources, char *fname, i radix(readers, CPUS, geomfile, indexfile, tmpdir, &geompos, maxzoom, basezoom, droprate, gamma); /* end of tile */ - serialize_byte(geomfile, -2, &geompos, fname); + serialize_ulong_long(geomfile, 0, &geompos, fname); // EOF if (fclose(geomfile) != 0) { perror("fclose geom"); @@ -2014,9 +1978,8 @@ std::pair read_input(std::vector &sources, char *fname, i if (!quiet) { long long s = progress_seq; long long geompos_print = geompos; - long long metapos_print = metapos; long long poolpos_print = poolpos; - fprintf(stderr, "%lld features, %lld bytes of geometry, %lld bytes of separate metadata, %lld bytes of string pool\n", s, geompos_print, metapos_print, poolpos_print); + fprintf(stderr, "%lld features, %lld bytes of geometry, %lld bytes of string pool\n", s, geompos_print, poolpos_print); } if (indexpos == 0) { @@ -2083,6 +2046,7 @@ std::pair read_input(std::vector &sources, char *fname, i progress = nprogress; if (!quiet && !quiet_progress && progress_time()) { fprintf(stderr, "Maxzoom: %lld%% \r", progress); + fflush(stderr); } } } @@ -2269,6 +2233,7 @@ std::pair read_input(std::vector &sources, char *fname, i progress = nprogress; if (!quiet && !quiet_progress && progress_time()) { fprintf(stderr, "Base zoom/drop rate: %lld%% \r", progress); + fflush(stderr); } } @@ -2518,7 +2483,7 @@ std::pair read_input(std::vector &sources, char *fname, i std::atomic midx(0); std::atomic midy(0); std::vector strategies; - int written = traverse_zooms(fd, size, meta, stringpool, &midx, &midy, maxzoom, minzoom, outdb, outdir, buffer, fname, tmpdir, gamma, full_detail, low_detail, min_detail, meta_off, pool_off, initial_x, initial_y, simplification, maxzoom_simplification, layermaps, prefilter, postfilter, attribute_accum, filter, strategies); + int written = traverse_zooms(fd, size, stringpool, &midx, &midy, maxzoom, minzoom, outdb, outdir, buffer, fname, tmpdir, gamma, full_detail, low_detail, min_detail, pool_off, initial_x, initial_y, simplification, maxzoom_simplification, layermaps, prefilter, postfilter, attribute_accum, filter, strategies, iz); if (maxzoom != written) { if (written > minzoom) { @@ -2531,14 +2496,6 @@ std::pair read_input(std::vector &sources, char *fname, i } } - madvise(meta, metapos, MADV_DONTNEED); - if (munmap(meta, metapos) != 0) { - perror("munmap meta"); - } - if (close(metafd) < 0) { - perror("close meta"); - } - if (poolpos > 0) { madvise((void *) stringpool, poolpos, MADV_DONTNEED); if (munmap(stringpool, poolpos) != 0) { @@ -2745,6 +2702,8 @@ int main(int argc, char **argv) { int files_open_at_start; json_object *filter = NULL; + memsize = calc_memsize(); + for (i = 0; i < 256; i++) { prevent[i] = 0; additional[i] = 0; diff --git a/main.hpp b/main.hpp index 60bd36b6d..933957f23 100644 --- a/main.hpp +++ b/main.hpp @@ -4,6 +4,7 @@ #include #include #include +#include #include "json_logger.hpp" @@ -47,6 +48,7 @@ extern int extra_detail; extern size_t CPUS; extern size_t TEMP_FILES; +extern size_t memsize; extern size_t max_tile_size; extern size_t max_tile_features; diff --git a/memfile.cpp b/memfile.cpp index 775083675..be81c4f4f 100644 --- a/memfile.cpp +++ b/memfile.cpp @@ -12,33 +12,34 @@ struct memfile *memfile_open(int fd) { return NULL; } - char *map = (char *) mmap(NULL, INITIAL, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); - if (map == MAP_FAILED) { - return NULL; - } - struct memfile *mf = new memfile; if (mf == NULL) { - munmap(map, INITIAL); return NULL; } mf->fd = fd; - mf->map = map; - mf->len = INITIAL; - mf->off = 0; mf->tree = 0; + mf->off = 0; return mf; } int memfile_close(struct memfile *file) { - if (munmap(file->map, file->len) != 0) { - return -1; - } + // If it isn't full yet, flush out the string to the file now. + // If it is full, close out the buffered file writer. - if (file->fd >= 0) { - if (close(file->fd) != 0) { + if (file->fp == NULL) { + if (write(file->fd, file->map.c_str(), file->map.size()) != (ssize_t) file->map.size()) { + return -1; + } + + if (file->fd >= 0) { + if (close(file->fd) != 0) { + return -1; + } + } + } else { + if (fclose(file->fp) != 0) { return -1; } } @@ -48,24 +49,40 @@ int memfile_close(struct memfile *file) { } int memfile_write(struct memfile *file, void *s, long long len) { - if (file->off + len > file->len) { - if (munmap(file->map, file->len) != 0) { - return -1; + // If it is full, append to the file. + // If it is not full yet, append to the string in memory. + + if (file->fp != NULL) { + if (fwrite(s, sizeof(char), len, file->fp) != (size_t) len) { + return 0; } + file->off += len; + } else { + file->map.append(std::string((char *) s, len)); + file->off += len; + } - file->len += (len + INCREMENT + 1) / INCREMENT * INCREMENT; + return len; +} - if (ftruncate(file->fd, file->len) != 0) { - return -1; - } +void memfile_full(struct memfile *file) { + // The file is full. Write out a copy of whatever has accumulated in memory + // to the file, and switch to appending to the file. Existing references + // into the memory still work. - file->map = (char *) mmap(NULL, file->len, PROT_READ | PROT_WRITE, MAP_SHARED, file->fd, 0); - if (file->map == MAP_FAILED) { - return -1; - } + if (file->fp != NULL) { + fprintf(stderr, "memfile marked full twice\n"); + exit(EXIT_IMPOSSIBLE); } - memcpy(file->map + file->off, s, len); - file->off += len; - return len; + file->fp = fdopen(file->fd, "wb"); + if (file->fp == NULL) { + fprintf(stderr, "fdopen memfile: %s\n", strerror(errno)); + exit(EXIT_OPEN); + } + + if (fwrite(file->map.c_str(), sizeof(char), file->map.size(), file->fp) != file->map.size()) { + fprintf(stderr, "memfile write: %s\n", strerror(errno)); + exit(EXIT_WRITE); + } } diff --git a/memfile.hpp b/memfile.hpp index 185544f4f..e8ab8c6da 100644 --- a/memfile.hpp +++ b/memfile.hpp @@ -2,21 +2,20 @@ #define MEMFILE_HPP #include +#include +#include "errors.hpp" struct memfile { int fd = 0; - char *map = NULL; - std::atomic len; - long long off = 0; + std::string map; unsigned long tree = 0; - - memfile() - : len(0) { - } + FILE *fp = NULL; + size_t off = 0; }; struct memfile *memfile_open(int fd); int memfile_close(struct memfile *file); int memfile_write(struct memfile *file, void *s, long long len); +void memfile_full(struct memfile *file); #endif diff --git a/mvt.cpp b/mvt.cpp index e8e5348f8..b43658634 100644 --- a/mvt.cpp +++ b/mvt.cpp @@ -82,14 +82,14 @@ int decompress(std::string const &input, std::string &output) { } // https://github.com/mapbox/mapnik-vector-tile/blob/master/src/vector_tile_compression.hpp -int compress(std::string const &input, std::string &output) { +int compress(std::string const &input, std::string &output, bool gz) { z_stream deflate_s; deflate_s.zalloc = Z_NULL; deflate_s.zfree = Z_NULL; deflate_s.opaque = Z_NULL; deflate_s.avail_in = 0; deflate_s.next_in = Z_NULL; - deflateInit2(&deflate_s, Z_BEST_COMPRESSION, Z_DEFLATED, 31, 8, Z_DEFAULT_STRATEGY); + deflateInit2(&deflate_s, Z_BEST_COMPRESSION, Z_DEFLATED, gz ? 31 : 15, 8, Z_DEFAULT_STRATEGY); deflate_s.next_in = (Bytef *) input.data(); deflate_s.avail_in = input.size(); size_t length = 0; diff --git a/mvt.hpp b/mvt.hpp index 8afaddffe..696e25359 100644 --- a/mvt.hpp +++ b/mvt.hpp @@ -115,7 +115,7 @@ struct mvt_tile { bool is_compressed(std::string const &data); int decompress(std::string const &input, std::string &output); -int compress(std::string const &input, std::string &output); +int compress(std::string const &input, std::string &output, bool gz); int dezig(unsigned n); mvt_value stringified_to_mvt_value(int type, const char *s); diff --git a/plugin.cpp b/plugin.cpp index 158ea3f72..0e65509f1 100644 --- a/plugin.cpp +++ b/plugin.cpp @@ -405,7 +405,6 @@ serial_feature parse_feature(json_pull *jp, int z, unsigned x, unsigned y, std:: sf.bbox[0] = sf.bbox[1] = LLONG_MAX; sf.bbox[2] = sf.bbox[3] = LLONG_MIN; sf.extent = 0; - sf.metapos = 0; sf.has_id = false; std::string layername = "unknown"; diff --git a/pmtiles_file.cpp b/pmtiles_file.cpp index 47fcba86b..cf6f07590 100644 --- a/pmtiles_file.cpp +++ b/pmtiles_file.cpp @@ -57,7 +57,7 @@ std::string compress_fn(const std::string &input, uint8_t compression) { if (compression == pmtiles::COMPRESSION_NONE) { output = input; } else if (compression == pmtiles::COMPRESSION_GZIP) { - compress(input, output); + compress(input, output, true); } else { throw std::runtime_error("Unknown or unsupported compression."); } @@ -121,7 +121,7 @@ std::string metadata_to_pmtiles_json(metadata m) { state.json_end_hash(); state.json_write_newline(); std::string compressed; - compress(buf, compressed); + compress(buf, compressed, true); return compressed; } @@ -200,6 +200,7 @@ void mbtiles_map_image_to_pmtiles(char *fname, metadata m, bool tile_compression pmtiles::zxy zxy = pmtiles::tileid_to_zxy(tile_id); if (!quiet && !quiet_progress) { fprintf(stderr, " %3.1f%% %d/%u/%u \r", progress, zxy.z, zxy.x, zxy.y); + fflush(stderr); } sqlite3_bind_int(map_stmt, 1, zxy.z); sqlite3_bind_int(map_stmt, 2, zxy.x); diff --git a/pool.cpp b/pool.cpp index 71de62f5f..17e37c576 100644 --- a/pool.cpp +++ b/pool.cpp @@ -3,6 +3,7 @@ #include #include #include +#include "main.hpp" #include "memfile.hpp" #include "pool.hpp" #include "errors.hpp" @@ -42,24 +43,26 @@ long long addpool(struct memfile *poolfile, struct memfile *treefile, const char } while (*sp != 0) { - int cmp = swizzlecmp(s, poolfile->map + ((struct stringpool *) (treefile->map + *sp))->off + 1); + int cmp = swizzlecmp(s, poolfile->map.c_str() + ((struct stringpool *) (treefile->map.c_str() + *sp))->off + 1); if (cmp == 0) { - cmp = type - (poolfile->map + ((struct stringpool *) (treefile->map + *sp))->off)[0]; + cmp = type - (poolfile->map.c_str() + ((struct stringpool *) (treefile->map.c_str() + *sp))->off)[0]; } if (cmp < 0) { - sp = &(((struct stringpool *) (treefile->map + *sp))->left); + sp = &(((struct stringpool *) (treefile->map.c_str() + *sp))->left); } else if (cmp > 0) { - sp = &(((struct stringpool *) (treefile->map + *sp))->right); + sp = &(((struct stringpool *) (treefile->map.c_str() + *sp))->right); } else { - return ((struct stringpool *) (treefile->map + *sp))->off; + return ((struct stringpool *) (treefile->map.c_str() + *sp))->off; } depth++; if (depth > max) { // Search is very deep, so string is probably unique. // Add it to the pool without adding it to the search tree. + // This might go either to memory or the file, depending on whether + // the pool is full yet. long long off = poolfile->off; if (memfile_write(poolfile, &type, 1) < 0) { @@ -74,12 +77,41 @@ long long addpool(struct memfile *poolfile, struct memfile *treefile, const char } } + // Size of memory divided by 10 from observation of OOM errors (when supposedly + // 20% of memory is full) and onset of thrashing (when supposedly 15% of memory + // is full) on ECS. + if ((size_t) (poolfile->off + treefile->off) > memsize / CPUS / 10) { + // If the pool and search tree get to be larger than physical memory, + // then searching will start thrashing. Switch to appending strings + // to the file instead of keeping them in memory. + + if (poolfile->fp == NULL) { + memfile_full(poolfile); + } + } + + if (poolfile->fp != NULL) { + // We are now appending to the file, so don't try to keep tree references + // to the newly-added strings. + + long long off = poolfile->off; + if (memfile_write(poolfile, &type, 1) < 0) { + perror("memfile write"); + exit(EXIT_WRITE); + } + if (memfile_write(poolfile, (void *) s, strlen(s) + 1) < 0) { + perror("memfile write"); + exit(EXIT_WRITE); + } + return off; + } + // *sp is probably in the memory-mapped file, and will move if the file grows. long long ssp; if (sp == &treefile->tree) { ssp = -1; } else { - ssp = ((char *) sp) - treefile->map; + ssp = ((char *) sp) - treefile->map.c_str(); } long long off = poolfile->off; @@ -116,7 +148,7 @@ long long addpool(struct memfile *poolfile, struct memfile *treefile, const char if (ssp == -1) { treefile->tree = p; } else { - *((long long *) (treefile->map + ssp)) = p; + *((long long *) (treefile->map.c_str() + ssp)) = p; } return off; } diff --git a/serial.cpp b/serial.cpp index 4404f92cd..59f319017 100644 --- a/serial.cpp +++ b/serial.cpp @@ -9,9 +9,11 @@ #include #include #include +#include #include "protozero/varint.hpp" #include "geometry.hpp" #include "mbtiles.hpp" +#include "mvt.hpp" #include "tile.hpp" #include "serial.hpp" #include "options.hpp" @@ -24,15 +26,18 @@ // Offset coordinates to keep them positive #define COORD_OFFSET (4LL << 32) -#define SHIFT_RIGHT(a) ((long long) std::round((double)(a) / (1LL << geometry_scale))) +#define SHIFT_RIGHT(a) ((long long) std::round((double) (a) / (1LL << geometry_scale))) #define SHIFT_LEFT(a) ((((a) + (COORD_OFFSET >> geometry_scale)) << geometry_scale) - COORD_OFFSET) -size_t fwrite_check(const void *ptr, size_t size, size_t nitems, FILE *stream, const char *fname) { +// write to file + +size_t fwrite_check(const void *ptr, size_t size, size_t nitems, FILE *stream, std::atomic *fpos, const char *fname) { size_t w = fwrite(ptr, size, nitems, stream); if (w != nitems) { fprintf(stderr, "%s: Write to temporary file failed: %s\n", fname, strerror(errno)); exit(EXIT_WRITE); } + *fpos += size * nitems; return w; } @@ -69,15 +74,54 @@ void serialize_ulong_long(FILE *out, unsigned long long zigzag, std::atomic *fpos, const char *fname) { - fwrite_check(&n, sizeof(signed char), 1, out, fname); - *fpos += sizeof(signed char); + fwrite_check(&n, sizeof(signed char), 1, out, fpos, fname); } void serialize_uint(FILE *out, unsigned n, std::atomic *fpos, const char *fname) { - fwrite_check(&n, sizeof(unsigned), 1, out, fname); - *fpos += sizeof(unsigned); + serialize_ulong_long(out, n, fpos, fname); +} + +// write to memory + +size_t fwrite_check(const void *ptr, size_t size, size_t nitems, std::string &stream) { + stream += std::string((char *) ptr, size * nitems); + return nitems; +} + +void serialize_ulong_long(std::string &out, unsigned long long zigzag) { + while (1) { + unsigned char b = zigzag & 0x7F; + if ((zigzag >> 7) != 0) { + b |= 0x80; + out += b; + zigzag >>= 7; + } else { + out += b; + break; + } + } +} + +void serialize_long_long(std::string &out, long long n) { + unsigned long long zigzag = protozero::encode_zigzag64(n); + + serialize_ulong_long(out, zigzag); +} + +void serialize_int(std::string &out, int n) { + serialize_long_long(out, n); +} + +void serialize_byte(std::string &out, signed char n) { + out += n; +} + +void serialize_uint(std::string &out, unsigned n) { + serialize_ulong_long(out, n); } +// read from memory + void deserialize_int(char **f, int *n) { long long ll; deserialize_long_long(f, &ll); @@ -109,8 +153,9 @@ void deserialize_ulong_long(char **f, unsigned long long *zigzag) { } void deserialize_uint(char **f, unsigned *n) { - memcpy(n, *f, sizeof(unsigned)); - *f += sizeof(unsigned); + unsigned long long v; + deserialize_ulong_long(f, &v); + *n = v; } void deserialize_byte(char **f, signed char *n) { @@ -118,79 +163,26 @@ void deserialize_byte(char **f, signed char *n) { *f += sizeof(signed char); } -int deserialize_long_long_io(FILE *f, long long *n, std::atomic *geompos) { - unsigned long long zigzag = 0; - int ret = deserialize_ulong_long_io(f, &zigzag, geompos); - *n = protozero::decode_zigzag64(zigzag); - return ret; -} - -int deserialize_ulong_long_io(FILE *f, unsigned long long *zigzag, std::atomic *geompos) { - *zigzag = 0; - int shift = 0; - - while (1) { - int c = getc(f); - if (c == EOF) { - return 0; - } - (*geompos)++; - - if ((c & 0x80) == 0) { - *zigzag |= ((unsigned long long) c) << shift; - shift += 7; - break; - } else { - *zigzag |= ((unsigned long long) (c & 0x7F)) << shift; - shift += 7; - } - } - - return 1; -} - -int deserialize_int_io(FILE *f, int *n, std::atomic *geompos) { - long long ll = 0; - int ret = deserialize_long_long_io(f, &ll, geompos); - *n = ll; - return ret; -} - -int deserialize_uint_io(FILE *f, unsigned *n, std::atomic *geompos) { - if (fread(n, sizeof(unsigned), 1, f) != 1) { - return 0; - } - *geompos += sizeof(unsigned); - return 1; -} - -int deserialize_byte_io(FILE *f, signed char *n, std::atomic *geompos) { - int c = getc(f); - if (c == EOF) { - return 0; - } - *n = c; - (*geompos)++; - return 1; -} - -static void write_geometry(drawvec const &dv, std::atomic *fpos, FILE *out, const char *fname, long long wx, long long wy) { +static void write_geometry(drawvec const &dv, std::string &out, long long wx, long long wy) { for (size_t i = 0; i < dv.size(); i++) { if (dv[i].op == VT_MOVETO || dv[i].op == VT_LINETO) { - serialize_byte(out, dv[i].op, fpos, fname); - serialize_long_long(out, dv[i].x - wx, fpos, fname); - serialize_long_long(out, dv[i].y - wy, fpos, fname); + serialize_byte(out, dv[i].op); + serialize_long_long(out, dv[i].x - wx); + serialize_long_long(out, dv[i].y - wy); wx = dv[i].x; wy = dv[i].y; } else { - serialize_byte(out, dv[i].op, fpos, fname); + serialize_byte(out, dv[i].op); } } + serialize_byte(out, VT_END); } // called from generating the next zoom level -void serialize_feature(FILE *geomfile, serial_feature *sf, std::atomic *geompos, const char *fname, long long wx, long long wy, bool include_minzoom) { - serialize_byte(geomfile, sf->t, geompos, fname); +std::string serialize_feature(serial_feature *sf, long long wx, long long wy) { + std::string s; + + serialize_byte(s, sf->t); #define FLAG_LAYER 7 @@ -212,63 +204,56 @@ void serialize_feature(FILE *geomfile, serial_feature *sf, std::atomichas_tippecanoe_minzoom << FLAG_MINZOOM; layer |= sf->has_tippecanoe_maxzoom << FLAG_MAXZOOM; - serialize_long_long(geomfile, layer, geompos, fname); + serialize_long_long(s, layer); if (sf->seq != 0) { - serialize_long_long(geomfile, sf->seq, geompos, fname); + serialize_long_long(s, sf->seq); } if (sf->has_tippecanoe_minzoom) { - serialize_int(geomfile, sf->tippecanoe_minzoom, geompos, fname); + serialize_int(s, sf->tippecanoe_minzoom); } if (sf->has_tippecanoe_maxzoom) { - serialize_int(geomfile, sf->tippecanoe_maxzoom, geompos, fname); + serialize_int(s, sf->tippecanoe_maxzoom); } if (sf->has_id) { - serialize_ulong_long(geomfile, sf->id, geompos, fname); + serialize_ulong_long(s, sf->id); } - serialize_int(geomfile, sf->segment, geompos, fname); + serialize_int(s, sf->segment); + + write_geometry(sf->geometry, s, wx, wy); - write_geometry(sf->geometry, geompos, geomfile, fname, wx, wy); - serialize_byte(geomfile, VT_END, geompos, fname); if (sf->index != 0) { - serialize_ulong_long(geomfile, sf->index, geompos, fname); + serialize_ulong_long(s, sf->index); } if (sf->label_point != 0) { - serialize_ulong_long(geomfile, sf->label_point, geompos, fname); + serialize_ulong_long(s, sf->label_point); } if (sf->extent != 0) { - serialize_long_long(geomfile, sf->extent, geompos, fname); + serialize_long_long(s, sf->extent); } - serialize_long_long(geomfile, sf->metapos, geompos, fname); - - if (sf->metapos < 0) { - serialize_long_long(geomfile, sf->keys.size(), geompos, fname); + serialize_long_long(s, sf->keys.size()); - for (size_t i = 0; i < sf->keys.size(); i++) { - serialize_long_long(geomfile, sf->keys[i], geompos, fname); - serialize_long_long(geomfile, sf->values[i], geompos, fname); - } + for (size_t i = 0; i < sf->keys.size(); i++) { + serialize_long_long(s, sf->keys[i]); + serialize_long_long(s, sf->values[i]); } - if (include_minzoom) { - serialize_byte(geomfile, sf->feature_minzoom, geompos, fname); - } + // MAGIC: This knows that the feature minzoom is the last byte of the feature, + serialize_byte(s, sf->feature_minzoom); + return s; } -serial_feature deserialize_feature(FILE *geoms, std::atomic *geompos_in, char *metabase, long long *meta_off, unsigned z, unsigned tx, unsigned ty, unsigned *initial_x, unsigned *initial_y) { +serial_feature deserialize_feature(std::string &geoms, unsigned z, unsigned tx, unsigned ty, unsigned *initial_x, unsigned *initial_y) { serial_feature sf; + char *cp = (char *) geoms.c_str(); - deserialize_byte_io(geoms, &sf.t, geompos_in); - if (sf.t < 0) { - return sf; - } - - deserialize_long_long_io(geoms, &sf.layer, geompos_in); + deserialize_byte(&cp, &sf.t); + deserialize_long_long(&cp, &sf.layer); sf.seq = 0; if (sf.layer & (1 << FLAG_SEQ)) { - deserialize_long_long_io(geoms, &sf.seq, geompos_in); + deserialize_long_long(&cp, &sf.seq); } sf.tippecanoe_minzoom = -1; @@ -276,64 +261,54 @@ serial_feature deserialize_feature(FILE *geoms, std::atomic *geompos_ sf.id = 0; sf.has_id = false; if (sf.layer & (1 << FLAG_MINZOOM)) { - deserialize_int_io(geoms, &sf.tippecanoe_minzoom, geompos_in); + deserialize_int(&cp, &sf.tippecanoe_minzoom); } if (sf.layer & (1 << FLAG_MAXZOOM)) { - deserialize_int_io(geoms, &sf.tippecanoe_maxzoom, geompos_in); + deserialize_int(&cp, &sf.tippecanoe_maxzoom); } if (sf.layer & (1 << FLAG_ID)) { sf.has_id = true; - deserialize_ulong_long_io(geoms, &sf.id, geompos_in); + deserialize_ulong_long(&cp, &sf.id); } - deserialize_int_io(geoms, &sf.segment, geompos_in); + deserialize_int(&cp, &sf.segment); sf.index = 0; sf.label_point = 0; sf.extent = 0; - sf.geometry = decode_geometry(geoms, geompos_in, z, tx, ty, sf.bbox, initial_x[sf.segment], initial_y[sf.segment]); + sf.geometry = decode_geometry(&cp, z, tx, ty, sf.bbox, initial_x[sf.segment], initial_y[sf.segment]); + if (sf.layer & (1 << FLAG_INDEX)) { - deserialize_ulong_long_io(geoms, &sf.index, geompos_in); + deserialize_ulong_long(&cp, &sf.index); } if (sf.layer & (1 << FLAG_LABEL_POINT)) { - deserialize_ulong_long_io(geoms, &sf.label_point, geompos_in); + deserialize_ulong_long(&cp, &sf.label_point); } if (sf.layer & (1 << FLAG_EXTENT)) { - deserialize_long_long_io(geoms, &sf.extent, geompos_in); + deserialize_long_long(&cp, &sf.extent); } sf.layer >>= FLAG_LAYER; - sf.metapos = 0; - deserialize_long_long_io(geoms, &sf.metapos, geompos_in); + long long count; + deserialize_long_long(&cp, &count); - if (sf.metapos >= 0) { - char *meta = metabase + sf.metapos + meta_off[sf.segment]; - long long count; - deserialize_long_long(&meta, &count); - - for (long long i = 0; i < count; i++) { - long long k, v; - deserialize_long_long(&meta, &k); - deserialize_long_long(&meta, &v); - sf.keys.push_back(k); - sf.values.push_back(v); - } - } else { - long long count; - deserialize_long_long_io(geoms, &count, geompos_in); - - for (long long i = 0; i < count; i++) { - long long k, v; - deserialize_long_long_io(geoms, &k, geompos_in); - deserialize_long_long_io(geoms, &v, geompos_in); - sf.keys.push_back(k); - sf.values.push_back(v); - } + for (long long i = 0; i < count; i++) { + long long k, v; + deserialize_long_long(&cp, &k); + deserialize_long_long(&cp, &v); + sf.keys.push_back(k); + sf.values.push_back(v); } - deserialize_byte_io(geoms, &sf.feature_minzoom, geompos_in); + // MAGIC: This knows that the feature minzoom is the last byte of the feature. + deserialize_byte(&cp, &sf.feature_minzoom); + + if (cp != geoms.c_str() + geoms.size()) { + fprintf(stderr, "wrong length decoding feature: used %zd, len is %zu\n", cp - geoms.c_str(), geoms.size()); + exit(EXIT_IMPOSSIBLE); + } return sf; } @@ -512,32 +487,6 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf) { locs.clear(); } - bool inline_meta = true; - // Don't inline metadata for features that will span several tiles at maxzoom - if (scaled_geometry.size() > 0 && (sf.bbox[2] < sf.bbox[0] || sf.bbox[3] < sf.bbox[1])) { - fprintf(stderr, "Internal error: impossible feature bounding box %llx,%llx,%llx,%llx\n", sf.bbox[0], sf.bbox[1], sf.bbox[2], sf.bbox[3]); - } - if (sf.bbox[0] == LLONG_MAX) { - // No bounding box (empty geometry) - // Shouldn't happen, but avoid arithmetic overflow below - } else if (sf.bbox[2] - sf.bbox[0] > (2LL << (32 - sst->maxzoom)) || sf.bbox[3] - sf.bbox[1] > (2LL << (32 - sst->maxzoom))) { - inline_meta = false; - - if (prevent[P_CLIPPING]) { - static std::atomic warned(0); - long long extent = ((sf.bbox[2] - sf.bbox[0]) / ((1LL << (32 - sst->maxzoom)) + 1)) * ((sf.bbox[3] - sf.bbox[1]) / ((1LL << (32 - sst->maxzoom)) + 1)); - if (extent > warned) { - fprintf(stderr, "Warning: %s:%d: Large unclipped (-pc) feature may be duplicated across %lld tiles\n", sst->fname, sst->line, extent); - warned = extent; - - if (extent > 10000) { - fprintf(stderr, "Exiting because this can't be right.\n"); - exit(EXIT_IMPOSSIBLE); - } - } - } - } - double extent = 0; if (additional[A_DROP_SMALLEST_AS_NEEDED] || additional[A_COALESCE_SMALLEST_AS_NEEDED] || order_by_size || sst->want_dist) { if (sf.t == VT_POLYGON) { @@ -725,24 +674,17 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf) { } } - if (inline_meta) { - sf.metapos = -1; - for (size_t i = 0; i < sf.full_keys.size(); i++) { - sf.keys.push_back(addpool(r->poolfile, r->treefile, sf.full_keys[i].c_str(), mvt_string)); - sf.values.push_back(addpool(r->poolfile, r->treefile, sf.full_values[i].s.c_str(), sf.full_values[i].type)); - } - } else { - sf.metapos = r->metapos; - serialize_long_long(r->metafile, sf.full_keys.size(), &r->metapos, sst->fname); - for (size_t i = 0; i < sf.full_keys.size(); i++) { - serialize_long_long(r->metafile, addpool(r->poolfile, r->treefile, sf.full_keys[i].c_str(), mvt_string), &r->metapos, sst->fname); - serialize_long_long(r->metafile, addpool(r->poolfile, r->treefile, sf.full_values[i].s.c_str(), sf.full_values[i].type), &r->metapos, sst->fname); - } + for (size_t i = 0; i < sf.full_keys.size(); i++) { + sf.keys.push_back(addpool(r->poolfile, r->treefile, sf.full_keys[i].c_str(), mvt_string)); + sf.values.push_back(addpool(r->poolfile, r->treefile, sf.full_values[i].s.c_str(), sf.full_values[i].type)); } long long geomstart = r->geompos; sf.geometry = scaled_geometry; - serialize_feature(r->geomfile, &sf, &r->geompos, sst->fname, SHIFT_RIGHT(*(sst->initial_x)), SHIFT_RIGHT(*(sst->initial_y)), false); + + std::string feature = serialize_feature(&sf, SHIFT_RIGHT(*(sst->initial_x)), SHIFT_RIGHT(*(sst->initial_y))); + serialize_long_long(r->geomfile, feature.size(), &r->geompos, sst->fname); + fwrite_check(feature.c_str(), sizeof(char), feature.size(), r->geomfile, &r->geompos, sst->fname); struct index index; index.start = geomstart; @@ -752,8 +694,7 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf) { index.t = sf.t; index.ix = bbox_index; - fwrite_check(&index, sizeof(struct index), 1, r->indexfile, sst->fname); - r->indexpos += sizeof(struct index); + fwrite_check(&index, sizeof(struct index), 1, r->indexfile, &r->indexpos, sst->fname); for (size_t i = 0; i < 2; i++) { if (sf.bbox[i] < r->file_bbox[i]) { @@ -770,6 +711,7 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf) { checkdisk(sst->readers); if (!quiet && !quiet_progress && progress_time()) { fprintf(stderr, "Read %.2f million features\r", *sst->progress_seq / 1000000.0); + fflush(stderr); } } (*(sst->progress_seq))++; diff --git a/serial.hpp b/serial.hpp index 4ee922852..bd6e4d081 100644 --- a/serial.hpp +++ b/serial.hpp @@ -11,14 +11,19 @@ #include "mbtiles.hpp" #include "jsonpull/jsonpull.h" -size_t fwrite_check(const void *ptr, size_t size, size_t nitems, FILE *stream, const char *fname); +size_t fwrite_check(const void *ptr, size_t size, size_t nitems, FILE *stream, std::atomic *fpos, const char *fname); void serialize_int(FILE *out, int n, std::atomic *fpos, const char *fname); void serialize_long_long(FILE *out, long long n, std::atomic *fpos, const char *fname); void serialize_ulong_long(FILE *out, unsigned long long n, std::atomic *fpos, const char *fname); void serialize_byte(FILE *out, signed char n, std::atomic *fpos, const char *fname); void serialize_uint(FILE *out, unsigned n, std::atomic *fpos, const char *fname); -void serialize_string(FILE *out, const char *s, std::atomic *fpos, const char *fname); + +void serialize_int(std::string &out, int n); +void serialize_long_long(std::string &out, long long n); +void serialize_ulong_long(std::string &out, unsigned long long n); +void serialize_byte(std::string &out, signed char n); +void serialize_uint(std::string &out, unsigned n); void deserialize_int(char **f, int *n); void deserialize_long_long(char **f, long long *n); @@ -26,12 +31,6 @@ void deserialize_ulong_long(char **f, unsigned long long *n); void deserialize_uint(char **f, unsigned *n); void deserialize_byte(char **f, signed char *n); -int deserialize_int_io(FILE *f, int *n, std::atomic *geompos); -int deserialize_long_long_io(FILE *f, long long *n, std::atomic *geompos); -int deserialize_ulong_long_io(FILE *f, unsigned long long *n, std::atomic *geompos); -int deserialize_uint_io(FILE *f, unsigned *n, std::atomic *geompos); -int deserialize_byte_io(FILE *f, signed char *n, std::atomic *geompos); - struct serial_val { int type = 0; std::string s = ""; @@ -61,8 +60,6 @@ struct serial_feature { std::vector keys{}; std::vector values{}; - // If >= 0, metadata is external - long long metapos = 0; // XXX This isn't serialized. Should it be here? long long bbox[4] = {0, 0, 0, 0}; @@ -72,54 +69,45 @@ struct serial_feature { bool dropped = false; }; -void serialize_feature(FILE *geomfile, serial_feature *sf, std::atomic *geompos, const char *fname, long long wx, long long wy, bool include_minzoom); -serial_feature deserialize_feature(FILE *geoms, std::atomic *geompos_in, char *metabase, long long *meta_off, unsigned z, unsigned tx, unsigned ty, unsigned *initial_x, unsigned *initial_y); +std::string serialize_feature(serial_feature *sf, long long wx, long long wy); +serial_feature deserialize_feature(std::string &geoms, unsigned z, unsigned tx, unsigned ty, unsigned *initial_x, unsigned *initial_y); struct reader { - int metafd = -1; int poolfd = -1; int treefd = -1; int geomfd = -1; int indexfd = -1; - FILE *metafile = NULL; struct memfile *poolfile = NULL; struct memfile *treefile = NULL; FILE *geomfile = NULL; FILE *indexfile = NULL; - std::atomic metapos; std::atomic geompos; std::atomic indexpos; long long file_bbox[4] = {0, 0, 0, 0}; struct stat geomst {}; - struct stat metast {}; char *geom_map = NULL; reader() - : metapos(0), geompos(0), indexpos(0) { + : geompos(0), indexpos(0) { } reader(reader const &r) { - metafd = r.metafd; poolfd = r.poolfd; treefd = r.treefd; geomfd = r.geomfd; indexfd = r.indexfd; - metafile = r.metafile; poolfile = r.poolfile; treefile = r.treefile; geomfile = r.geomfile; indexfile = r.indexfile; - long long p = r.metapos; - metapos = p; - - p = r.geompos; + long long p = r.geompos; geompos = p; p = r.indexpos; @@ -128,7 +116,6 @@ struct reader { memcpy(file_bbox, r.file_bbox, sizeof(file_bbox)); geomst = r.geomst; - metast = r.metast; geom_map = r.geom_map; } diff --git a/tests/pointlm/out/-z15_-Z15_--drop-smallest-as-needed_-M300.json b/tests/pointlm/out/-z15_-Z15_--drop-smallest-as-needed_-M300.json new file mode 100644 index 000000000..303713f34 --- /dev/null +++ b/tests/pointlm/out/-z15_-Z15_--drop-smallest-as-needed_-M300.json @@ -0,0 +1,84886 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-88.030599,37.826157,-84.803679,41.760201", +"center": "-86.940308,40.476203,15", +"description": "tests/pointlm/out/-z15_-Z15_--drop-smallest-as-needed_-M300.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/pointlm/out/-z15_-Z15_--drop-smallest-as-needed_-M300.json.check.mbtiles -z15 -Z15 --drop-smallest-as-needed -M300 tests/pointlm/tl_2021_18_pointlm.shp.json.gz", +"json": "{\"vector_layers\":[{\"id\":\"tl_2021_18_pointlmshp\",\"description\":\"\",\"minzoom\":15,\"maxzoom\":15,\"fields\":{\"ANSICODE\":\"String\",\"FULLNAME\":\"String\",\"MTFCC\":\"String\",\"POINTID\":\"String\",\"STATEFP\":\"String\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"tl_2021_18_pointlmshp\",\"count\":24986,\"geometry\":\"Point\",\"attributeCount\":5,\"attributes\":[{\"attribute\":\"ANSICODE\",\"count\":1000,\"type\":\"string\",\"values\":[\"00429980\",\"00429983\",\"00429985\",\"00429988\",\"00429990\",\"00429991\",\"00429993\",\"00429998\",\"00429999\",\"00430000\",\"00430001\",\"00430002\",\"00430003\",\"00430004\",\"00430005\",\"00430006\",\"00430012\",\"00430014\",\"00430017\",\"00430020\",\"00430021\",\"00430023\",\"00430024\",\"00430025\",\"00430026\",\"00430033\",\"00430034\",\"00430035\",\"00430038\",\"00430039\",\"00430040\",\"00430041\",\"00430042\",\"00430043\",\"00430045\",\"00430046\",\"00430047\",\"00430050\",\"00430054\",\"00430056\",\"00430057\",\"00430058\",\"00430060\",\"00430061\",\"00430066\",\"00430067\",\"00430069\",\"00430070\",\"00430071\",\"00430072\",\"00430073\",\"00430074\",\"00430075\",\"00430077\",\"00430078\",\"00430081\",\"00430082\",\"00430084\",\"00430085\",\"00430086\",\"00430089\",\"00430096\",\"00430098\",\"00430099\",\"00430101\",\"00430104\",\"00430107\",\"00430112\",\"00430114\",\"00430115\",\"00430116\",\"00430118\",\"00430119\",\"00430122\",\"00430123\",\"00430124\",\"00430126\",\"00430128\",\"00430129\",\"00430130\",\"00430131\",\"00430134\",\"00430135\",\"00430136\",\"00430138\",\"00430143\",\"00430149\",\"00430152\",\"00430154\",\"00430155\",\"00430156\",\"00430164\",\"00430166\",\"00430167\",\"00430170\",\"00430171\",\"00430173\",\"00430179\",\"00430180\",\"00430181\"]},{\"attribute\":\"FULLNAME\",\"count\":1000,\"type\":\"string\",\"values\":[\"125th Place\",\"134th Place\",\"18th Street Park\",\"25th Street Shopping Ctr\",\"4 H Fairgrounds\",\"4 Winds Aerodrome\",\"4-H Club Fairground\",\"500 Heliport\",\"7th Day Adventist Schl\",\"Aaron\",\"Abbot Cmtry\",\"Aberdeen\",\"Abington\",\"Abner Creek Cmtry\",\"Abner-Ragan Cmtry\",\"Aboite\",\"Abshire Cmtry\",\"Abydel\",\"Academie\",\"Acme\",\"Acre Cmtry\",\"Acton\",\"Adam Cmtry\",\"Adams\",\"Adams Cmtry\",\"Adams Co Memorial Hosp\",\"Adams County Home\",\"Adams Hl\",\"Adams Mill\",\"Adamsboro\",\"Adderly's Pad\",\"Ade\",\"Adel\",\"Adel Cmtry\",\"Adkins Cmtry\",\"Advance\",\"Advance Conservation Club\",\"Adyeville\",\"Aero Plaines Arprt\",\"Aerobatic Practice Arprt\",\"Aetna\",\"Africa\",\"Aigner Drive\",\"Ainsworth\",\"Air Park Fld\",\"Airport Water Treatment Plant\",\"Aix\",\"Akers Cmtry\",\"Akron\",\"Alamo\",\"Alamo Conservation Club\",\"Alanton Park Drive\",\"Alaska\",\"Albany\",\"Alberson Cmtry\",\"Albion\",\"Albright Cmtry\",\"Alden Cmtry\",\"Aldine\",\"Aldrich Mound\",\"Alel Cmtry\",\"Alert\",\"Alexander Cmtry\",\"Alexandria\",\"Alexandria Arprt\",\"Alexandria Cmtry\",\"Alfont\",\"Alford\",\"Alford Airpark\",\"Alford Cmtry\",\"Alford Ct\",\"Alfordsville\",\"Alfordsville Cmtry\",\"Alger Cmtry\",\"Algers Cmtry\",\"Algiers\",\"Alkire Cmtry\",\"All Saints Cmtry\",\"Allbright Cmtry\",\"Alldredge Cmtry\",\"Allen\",\"Allen Cmtry\",\"Allen Crossing\",\"Allendale\",\"Allens Acres\",\"Allensville\",\"Allensville Cmtry\",\"Alley Oop Arprt\",\"Alliance\",\"Allison Plant 3 Heliport\",\"Allison Plant 8 Heliport\",\"Allisonville\",\"Allman\",\"Allsion Plant 5 Heliport\",\"Alma Lake\",\"Alpha Cmtry\",\"Alpine\",\"Alpine Lane\",\"Alquina\",\"Alta\"]},{\"attribute\":\"MTFCC\",\"count\":29,\"type\":\"string\",\"values\":[\"C3022\",\"C3061\",\"C3062\",\"C3071\",\"C3075\",\"C3081\",\"K1225\",\"K1231\",\"K1236\",\"K1237\",\"K1239\",\"K2110\",\"K2165\",\"K2182\",\"K2184\",\"K2186\",\"K2188\",\"K2190\",\"K2193\",\"K2194\",\"K2195\",\"K2196\",\"K2451\",\"K2460\",\"K2543\",\"K2545\",\"K2561\",\"K2582\",\"K3544\"]},{\"attribute\":\"POINTID\",\"count\":1000,\"type\":\"string\",\"values\":[\"110100049855\",\"110100050322\",\"110100050705\",\"110100052469\",\"110100052721\",\"110100053051\",\"110100053633\",\"110100053802\",\"110100053827\",\"110100054542\",\"110100057143\",\"110100057755\",\"110100058179\",\"110100058196\",\"110100058229\",\"110100058352\",\"110100058617\",\"110100058625\",\"110100058634\",\"110100058782\",\"110100058912\",\"110100058928\",\"110100058944\",\"110100059058\",\"110100059089\",\"110100059107\",\"110100059127\",\"110100059146\",\"110100059216\",\"110100059233\",\"110100059249\",\"110100059303\",\"110100059321\",\"110100062692\",\"110100062710\",\"110100062737\",\"110100062753\",\"110100062868\",\"110100063076\",\"110100063092\",\"110100063163\",\"110100063198\",\"110100063260\",\"110100063319\",\"110100063335\",\"110100063402\",\"110100063876\",\"110100063884\",\"110100063922\",\"110100063938\",\"110100064141\",\"110100064206\",\"110100064256\",\"110100064299\",\"110100064348\",\"110100064382\",\"110100064438\",\"110100064478\",\"110100066562\",\"110100066768\",\"110100066784\",\"110100066933\",\"110100067188\",\"110100067208\",\"110100067226\",\"110100067985\",\"110100068052\",\"110100068479\",\"110100068509\",\"110100068668\",\"110100069661\",\"110100070997\",\"110100071388\",\"110100074205\",\"110100074260\",\"110100075428\",\"110100075473\",\"110100075501\",\"110100075519\",\"110100075530\",\"110100075539\",\"110100079195\",\"110100079535\",\"110100079543\",\"110100079772\",\"110100079849\",\"110100079866\",\"110100080588\",\"110100080810\",\"110100080818\",\"110100082818\",\"110100082856\",\"110100082911\",\"110100084326\",\"110100087849\",\"110100087945\",\"110100087964\",\"110100087981\",\"110100087997\",\"110100088015\"]},{\"attribute\":\"STATEFP\",\"count\":1,\"type\":\"string\",\"values\":[\"18\"]}]}]}}", +"maxzoom": "15", +"minzoom": "15", +"name": "tests/pointlm/out/-z15_-Z15_--drop-smallest-as-needed_-M300.json.check.mbtiles", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{\"dropped_as_needed\":10456,\"tile_size_desired\":503}]", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8371, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430056", "POINTID": "1102653950579", "FULLNAME": "Aldrich Mound", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -88.030599, 38.045896 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8372, "y": 12658 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440399", "POINTID": "1102653993616", "FULLNAME": "Oak Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -88.021697, 37.836153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8372, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444722", "POINTID": "1102653954965", "FULLNAME": "Thompson Mound", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -88.013087, 38.035877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8373, "y": 12657 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442363", "POINTID": "1102654018716", "FULLNAME": "Rowe Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -88.009474, 37.840875 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8373, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445655", "POINTID": "1102654002169", "FULLNAME": "Welborn Switch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -88.000309, 38.006988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8374, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445655", "POINTID": "1102654002169", "FULLNAME": "Welborn Switch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -88.000309, 38.006988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8374, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438859", "POINTID": "1102654015711", "FULLNAME": "McFadden Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.993641, 38.042821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8375, "y": 12648 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441532", "POINTID": "1102653995608", "FULLNAME": "Prairie", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.981973, 37.921430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8375, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443047", "POINTID": "1102653997731", "FULLNAME": "Savah", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.978639, 38.017829 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8375, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292408", "FULLNAME": "Culley Acres Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.984197, 38.028747 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8376, "y": 12652 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445650", "POINTID": "1102654021631", "FULLNAME": "Weiss Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.977808, 37.892265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8376, "y": 12651 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445650", "POINTID": "1102654021631", "FULLNAME": "Weiss Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.977808, 37.892265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8376, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430082", "POINTID": "1102654006535", "FULLNAME": "Alldredge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.971418, 37.991432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8376, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443047", "POINTID": "1102653997731", "FULLNAME": "Savah", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.978639, 38.017829 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8376, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434828", "POINTID": "1102654012235", "FULLNAME": "French Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.972529, 38.032265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8377, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445176", "POINTID": "1102654001222", "FULLNAME": "Upton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.961698, 37.964401 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8377, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430060", "POINTID": "1102654006461", "FULLNAME": "Alexander Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.966419, 38.016986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8377, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331364282", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.962581, 38.042629 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8377, "y": 12633 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331364305", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.961873, 38.049008 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8378, "y": 12650 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052038503", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.951833, 37.901909 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8378, "y": 12647 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431120", "POINTID": "1102654007706", "FULLNAME": "Black Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.951138, 37.929210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8378, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292440", "FULLNAME": "Parrish Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.950141, 37.992529 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8378, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435276", "POINTID": "1102653981172", "FULLNAME": "Grafton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.954193, 38.001432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8378, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430720", "POINTID": "1102654007279", "FULLNAME": "Beech Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.949473, 38.020319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8378, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331364312", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.955693, 38.045174 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8379, "y": 12652 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436531", "POINTID": "1102653984361", "FULLNAME": "Hovey", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.941971, 37.892263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8379, "y": 12651 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436531", "POINTID": "1102653984361", "FULLNAME": "Hovey", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.941971, 37.892263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8379, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433792", "POINTID": "1102654011448", "FULLNAME": "Dunn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.942528, 37.973652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8379, "y": 12625 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447665", "POINTID": "1102654013154", "FULLNAME": "Harmonist Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.937529, 38.121152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8379, "y": 12624 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440051", "POINTID": "1102653992548", "FULLNAME": "New Harmony", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.935029, 38.129765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8380, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331361398", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.930780, 37.941566 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8380, "y": 12629 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051960370", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.928541, 38.083076 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8380, "y": 12625 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331364359", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.933497, 38.123916 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8380, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439643", "POINTID": "1102654016453", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.934197, 38.208098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8381, "y": 12647 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331363273", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.919410, 37.935635 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331361168", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.918171, 37.930942 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8381, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331363273", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.919410, 37.935635 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8381, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435072", "POINTID": "1102654012500", "FULLNAME": "Gill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.919748, 37.961986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8381, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434235", "POINTID": "1102653977972", "FULLNAME": "Erwin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.919193, 37.980042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8381, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449048", "POINTID": "1102653992303", "FULLNAME": "New Baltimore", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.917144, 38.176737 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8381, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435495", "POINTID": "1102653981801", "FULLNAME": "Griffin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.914749, 38.204214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8382, "y": 12647 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331793950", "FULLNAME": "West Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.908097, 37.929846 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8382, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433387", "POINTID": "1102653975314", "FULLNAME": "Dead Mans Crossing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.908360, 37.958374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8382, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452091", "POINTID": "1102653963757", "FULLNAME": "Wilson Community Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.903650, 38.031880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8383, "y": 12647 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439718", "POINTID": "1102653991854", "FULLNAME": "Mt Vernon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.895021, 37.932273 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8383, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430775", "POINTID": "1102654007344", "FULLNAME": "Belle Fontaine Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.893913, 37.958931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8383, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434406", "POINTID": "1102653978563", "FULLNAME": "Farmersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.896137, 37.980319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8383, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439390", "POINTID": "1102654016195", "FULLNAME": "Moore Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.900581, 37.994763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8383, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443755", "POINTID": "1102653998725", "FULLNAME": "Solitude", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.898916, 38.014763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8383, "y": 12624 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440978", "POINTID": "1102654017730", "FULLNAME": "Pelham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.899195, 38.130597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8384, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331361644", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.887004, 37.942994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8384, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442723", "POINTID": "1102654019088", "FULLNAME": "Saint Matthews Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.883638, 37.961430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8384, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442723", "POINTID": "1102654019088", "FULLNAME": "Saint Matthews Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.883638, 37.961430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8384, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430084", "POINTID": "1102654006541", "FULLNAME": "Allen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.887530, 38.173376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8385, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331338260", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.875752, 37.979014 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8385, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331338260", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.875752, 37.979014 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8385, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444010", "POINTID": "1102653999264", "FULLNAME": "Springfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.870305, 38.042542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8385, "y": 12624 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436373", "POINTID": "1102654013759", "FULLNAME": "Homer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.869194, 38.133375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8385, "y": 12622 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444167", "POINTID": "1102654020384", "FULLNAME": "Stillwell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.876973, 38.149209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8385, "y": 12616 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430532", "POINTID": "1102653966743", "FULLNAME": "Barrett", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.869473, 38.200599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8386, "y": 12623 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435662", "POINTID": "1102654013105", "FULLNAME": "Hancock Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.865860, 38.138375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8386, "y": 12622 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431963", "POINTID": "1102654009116", "FULLNAME": "Callahan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.859471, 38.144208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8386, "y": 12621 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439185", "POINTID": "1102654016074", "FULLNAME": "Miller Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.860029, 38.159763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8386, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441589", "POINTID": "1102654018141", "FULLNAME": "Price Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.860305, 38.165318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8387, "y": 12622 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444055", "POINTID": "1102654020238", "FULLNAME": "Stallings Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.854750, 38.144765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8387, "y": 12607 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437010", "POINTID": "1102653985465", "FULLNAME": "Jimtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.853085, 38.273099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8388, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431782", "POINTID": "1102653970549", "FULLNAME": "Bufkin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.845856, 37.987819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8388, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442566", "POINTID": "1102654018949", "FULLNAME": "Saint Johns Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.836415, 37.996985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8388, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440652", "POINTID": "1102653994019", "FULLNAME": "Oliver", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.839191, 38.043374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8388, "y": 12622 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292419", "FULLNAME": "Bugtown Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.839001, 38.149983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8388, "y": 12621 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441777", "POINTID": "1102653996067", "FULLNAME": "Rapture", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.841972, 38.152263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8389, "y": 12631 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331330218", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.824922, 38.072367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8389, "y": 12618 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444158", "POINTID": "1102653999507", "FULLNAME": "Stewartsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.832807, 38.184761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8389, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431954", "POINTID": "1102654009110", "FULLNAME": "Cale Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.834194, 38.209209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8389, "y": 12609 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436111", "POINTID": "1102653983389", "FULLNAME": "Hickory Ridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.826695, 38.258375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8389, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433104", "POINTID": "1102653974287", "FULLNAME": "Crawleyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.833363, 38.283376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8390, "y": 12631 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331330218", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.824922, 38.072367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8391, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433670", "POINTID": "1102654011415", "FULLNAME": "Downen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.805856, 38.035319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8391, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442533", "POINTID": "1102654018897", "FULLNAME": "Saint Francis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.803359, 38.161986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8392, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431994", "POINTID": "1102654009200", "FULLNAME": "Calvin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.796133, 37.956985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8392, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449629", "POINTID": "1102653971014", "FULLNAME": "Caborn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.791965, 37.970595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8392, "y": 12631 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436047", "POINTID": "1102653983230", "FULLNAME": "Hepburn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.801136, 38.070319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8392, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437655", "POINTID": "1102654014838", "FULLNAME": "Laurel Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.793913, 38.096985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8392, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504182681", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.793033, 38.108541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8392, "y": 12626 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102214241099", "FULLNAME": "Green Meadow Ct Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.793486, 38.109904 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504182681", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.793033, 38.108541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8392, "y": 12616 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434537", "POINTID": "1102654011996", "FULLNAME": "Fitzgerrell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.801415, 38.199764 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8393, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052018541", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.786435, 37.968096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8393, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445343", "POINTID": "1102654001639", "FULLNAME": "Wadesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.786137, 38.102541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8393, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331330960", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.782331, 38.177097 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441477", "POINTID": "1102653995503", "FULLNAME": "Poseyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.783082, 38.170042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8393, "y": 12616 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440611", "POINTID": "1102654017367", "FULLNAME": "Old Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.784195, 38.202540 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8393, "y": 12613 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452125", "POINTID": "1102653977289", "FULLNAME": "Egg Harbor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.790584, 38.228653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8393, "y": 12612 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440403", "POINTID": "1102654017041", "FULLNAME": "Oak Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.782806, 38.238098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8393, "y": 12611 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292238", "FULLNAME": "Garrett Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.788723, 38.243040 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440403", "POINTID": "1102654017041", "FULLNAME": "Oak Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.782806, 38.238098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8393, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443570", "POINTID": "1102653998558", "FULLNAME": "Skelton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.781695, 38.341433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8394, "y": 12647 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292397", "FULLNAME": "Hilakos Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.770132, 37.931416 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8394, "y": 12633 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331307718", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.777361, 38.048699 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8394, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292208", "FULLNAME": "Ralph E Koch Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.776390, 38.205312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8395, "y": 12649 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292448", "FULLNAME": "Lewis Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.759854, 37.916415 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8395, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331367507", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.759875, 37.966799 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8395, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331307646", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.765972, 38.004338 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8395, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331307657", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.766267, 38.009932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8395, "y": 12630 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431168", "POINTID": "1102653968326", "FULLNAME": "Blairsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.761967, 38.078929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8396, "y": 12650 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292429", "FULLNAME": "Zeller Elev Co Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.757078, 37.907805 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8396, "y": 12645 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438645", "POINTID": "1102653989555", "FULLNAME": "Marrs Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.755021, 37.945596 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103719167562", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.749517, 37.945221 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8396, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292391", "FULLNAME": "Schroeder Private Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.755133, 38.002804 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8396, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437977", "POINTID": "1102653988184", "FULLNAME": "Lippe", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.753910, 38.015319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8396, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103900796740", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.747870, 38.163659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8396, "y": 12611 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476494534", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.747907, 38.241129 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8396, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445956", "POINTID": "1102654002764", "FULLNAME": "White River", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.753202, 38.394157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8397, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452117", "POINTID": "1102653994878", "FULLNAME": "Philip Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.741966, 37.981708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8397, "y": 12630 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102214248082", "FULLNAME": "Black Oak Ct Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.742996, 38.077088 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102214248121", "FULLNAME": "Red Oak Ct Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.741095, 38.077133 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8397, "y": 12629 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434200", "POINTID": "1102654011694", "FULLNAME": "Engleheim Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.739190, 38.089207 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8397, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103900796740", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.747870, 38.163659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8397, "y": 12611 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476494534", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.747907, 38.241129 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8397, "y": 12607 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437029", "POINTID": "1102653985510", "FULLNAME": "Johnson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.745861, 38.277820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8397, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433922", "POINTID": "1102653976877", "FULLNAME": "East Mount Carmel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.744817, 38.393270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8397, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433922", "POINTID": "1102653976877", "FULLNAME": "East Mount Carmel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.744817, 38.393270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8398, "y": 12645 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102218266792", "FULLNAME": "St John Ct Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.729454, 37.950998 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8398, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102218267041", "FULLNAME": "Saint Paul Dr Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.730776, 37.956520 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8398, "y": 12629 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437478", "POINTID": "1102654014680", "FULLNAME": "Kunze Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.727802, 38.088651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8399, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107060795920", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.720962, 37.968178 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8399, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449726", "POINTID": "1102653997408", "FULLNAME": "Saint Philip", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.715852, 37.986984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8399, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292459", "FULLNAME": "Plugger Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.722834, 38.034986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8399, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440889", "POINTID": "1102653994465", "FULLNAME": "Parkers Settlement", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.716134, 38.046708 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052124719", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.714785, 38.043184 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8399, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437412", "POINTID": "1102654014636", "FULLNAME": "Knowles Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.725302, 38.205597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8399, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443572", "POINTID": "1102654019868", "FULLNAME": "Skelton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.725015, 38.268654 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8399, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438735", "POINTID": "1102654015585", "FULLNAME": "Mauck Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.722805, 38.284764 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8399, "y": 12584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443143", "POINTID": "1102654019429", "FULLNAME": "Scott Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.715584, 38.472266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8400, "y": 12651 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445765", "POINTID": "1102654002320", "FULLNAME": "West Franklin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.712797, 37.895040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8400, "y": 12647 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436079", "POINTID": "1102653983330", "FULLNAME": "Heusler", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.712797, 37.933650 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102215430176", "FULLNAME": "Savana Ct Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.711153, 37.929794 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8400, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331316971", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.714205, 37.938763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8400, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102215486409", "FULLNAME": "Pinewood Ct Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.711180, 37.999187 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8400, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052124719", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.714785, 38.043184 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8400, "y": 12617 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433272", "POINTID": "1102653974913", "FULLNAME": "Cynthiana", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.710303, 38.187542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8400, "y": 12614 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446124", "POINTID": "1102654022046", "FULLNAME": "Wilson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.713913, 38.215319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8400, "y": 12612 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439783", "POINTID": "1102653991899", "FULLNAME": "Mounts", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.706414, 38.230598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8400, "y": 12607 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476480546", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.708007, 38.277321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8401, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110331367818", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.703192, 38.046410 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103671204223", "FULLNAME": "Benjamin Trail", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.692927, 38.046976 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8401, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442864", "POINTID": "1102653997436", "FULLNAME": "Saint Wendel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.697246, 38.105595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8401, "y": 12626 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051957918", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.698472, 38.109081 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8401, "y": 12625 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292382", "FULLNAME": "Koester Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.700757, 38.117478 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8401, "y": 12611 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430825", "POINTID": "1102654007409", "FULLNAME": "Benson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.693636, 38.238376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8401, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110130340011", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.694210, 38.265461 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8402, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430752", "POINTID": "1102653967411", "FULLNAME": "Belknap", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.688075, 37.983374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8402, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103671204223", "FULLNAME": "Benjamin Trail", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.692927, 38.046976 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8402, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440801", "POINTID": "1102653994322", "FULLNAME": "Owensville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.687802, 38.271987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8402, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110130313905", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.691511, 38.282726 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8402, "y": 12586 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440706", "POINTID": "1102653994173", "FULLNAME": "Orrville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.686136, 38.458098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8403, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104486742478", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.677896, 37.970918 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8403, "y": 12629 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292494", "FULLNAME": "Lockyear Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.680410, 38.086416 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8403, "y": 12625 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438660", "POINTID": "1102653989585", "FULLNAME": "Martin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.673632, 38.124484 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8403, "y": 12623 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292505", "FULLNAME": "Hepler Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.675134, 38.136972 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8403, "y": 12585 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440707", "POINTID": "1102654017514", "FULLNAME": "Orrville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.680581, 38.468656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8403, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438132", "POINTID": "1102653988261", "FULLNAME": "Little Rock", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.679192, 38.494767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8404, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013780812320", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.661420, 37.967793 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8404, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730434846", "FULLNAME": "S Faith Way", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.668967, 37.977856 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8404, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436178", "POINTID": "1102654013567", "FULLNAME": "Higinbottom Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.669463, 38.043095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8404, "y": 12610 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432549", "POINTID": "1102654009937", "FULLNAME": "Clark Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.662246, 38.252264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8405, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110404757521", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.658890, 38.045512 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8405, "y": 12622 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440182", "POINTID": "1102653993170", "FULLNAME": "Nisbet", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.652799, 38.146151 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8405, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442972", "POINTID": "1102653954429", "FULLNAME": "Sand Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.655857, 38.356154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8405, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442977", "POINTID": "1102654019259", "FULLNAME": "Sand Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.653636, 38.360320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8405, "y": 12586 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292388", "FULLNAME": "Eickholtz Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.653751, 38.460308 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8406, "y": 12658 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444278", "POINTID": "1102654020496", "FULLNAME": "Stroud Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.645570, 37.834207 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8406, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729879153", "FULLNAME": "Forest Ave", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.643564, 37.978526 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8406, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436564", "POINTID": "1102654013878", "FULLNAME": "Huber Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.643352, 38.033929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8406, "y": 12632 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442797", "POINTID": "1102654019165", "FULLNAME": "Saint Peters Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.641963, 38.057262 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8406, "y": 12631 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442618", "POINTID": "1102653997321", "FULLNAME": "Saint Joseph", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.646962, 38.066153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8406, "y": 12626 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292481", "FULLNAME": "J & S Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.645399, 38.113783 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8406, "y": 12614 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439599", "POINTID": "1102654016426", "FULLNAME": "Mount Mariah Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.638079, 38.220319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8406, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436845", "POINTID": "1102654014148", "FULLNAME": "Island Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.638361, 39.128650 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8407, "y": 12650 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445235", "POINTID": "1102654001407", "FULLNAME": "Vaughan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.630292, 37.901428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8407, "y": 12649 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433608", "POINTID": "1102653974938", "FULLNAME": "Cypress", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.629737, 37.914206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8407, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439796", "POINTID": "1102653991911", "FULLNAME": "Mud Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.628627, 37.955873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8407, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441672", "POINTID": "1102654018200", "FULLNAME": "Putman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.634740, 37.994205 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8407, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437171", "POINTID": "1102653985771", "FULLNAME": "Kasson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.636129, 38.016984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8407, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441516", "POINTID": "1102654018071", "FULLNAME": "Powell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.628632, 38.172265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8407, "y": 12617 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446060", "POINTID": "1102654022020", "FULLNAME": "Williams Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.630499, 38.188638 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8407, "y": 12614 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439599", "POINTID": "1102654016426", "FULLNAME": "Mount Mariah Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.638079, 38.220319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8407, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452100", "POINTID": "1102653990011", "FULLNAME": "McGary", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.628635, 38.264486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8407, "y": 12577 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431196", "POINTID": "1102653968384", "FULLNAME": "Bloods Wood Crossing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.630303, 38.538656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8407, "y": 12575 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445007", "POINTID": "1102654001112", "FULLNAME": "Twin Bridges", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.630858, 38.553378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8407, "y": 12572 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452269", "POINTID": "1102653966990", "FULLNAME": "Beal", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.630024, 38.576712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8407, "y": 12571 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442978", "POINTID": "1102654019260", "FULLNAME": "Sand Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.626969, 38.583377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8408, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441815", "POINTID": "1102653996155", "FULLNAME": "Red Bank", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.625851, 37.971428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8408, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439696", "POINTID": "1102654016513", "FULLNAME": "Mount Sinai Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.618072, 37.995317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8408, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442621", "POINTID": "1102654018997", "FULLNAME": "Saint Joseph Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.616683, 38.002818 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8408, "y": 12571 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442978", "POINTID": "1102654019260", "FULLNAME": "Sand Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.626969, 38.583377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8409, "y": 12654 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441731", "POINTID": "1102653995989", "FULLNAME": "Rahm", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.614459, 37.869207 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8409, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729402042", "FULLNAME": "Betsy Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.610565, 37.988003 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8409, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439000", "POINTID": "1102654015917", "FULLNAME": "Memorial Park Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.611407, 38.000595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8409, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485724530", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.606429, 38.168619 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8409, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485724535", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.609146, 38.170837 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8409, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047864824", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.612126, 38.211711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8409, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110130263405", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.615613, 38.347233 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8410, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729804621", "FULLNAME": "Forrest Park Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.594214, 38.032848 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8410, "y": 12632 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441979", "POINTID": "1102654018503", "FULLNAME": "Richter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.602794, 38.057817 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8410, "y": 12618 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475948345", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.594651, 38.183964 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8410, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475931153", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.595654, 38.206836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8410, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110130301079", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.599578, 38.346181 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072916906", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.599487, 38.343791 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110130300975", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.599466, 38.344997 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8410, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292224", "FULLNAME": "Hull Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.599466, 38.402264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8410, "y": 12581 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292350", "FULLNAME": "Snider Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.594579, 38.499476 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8410, "y": 12577 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430471", "POINTID": "1102653966485", "FULLNAME": "Bandmill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.602800, 38.538377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8411, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292515", "FULLNAME": "Skylane Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.593447, 38.011095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8411, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449051", "POINTID": "1102653986559", "FULLNAME": "Kratzville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.585572, 38.022539 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8411, "y": 12618 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735001670", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.592809, 38.186195 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8411, "y": 12616 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475931074", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.592130, 38.201866 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103728585158", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.586342, 38.203107 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8411, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475931078", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.593506, 38.204648 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730319088", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.586277, 38.206383 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8411, "y": 12609 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433809", "POINTID": "1102654011450", "FULLNAME": "Durham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.585854, 38.260040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8411, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452385", "POINTID": "1102653962017", "FULLNAME": "Princeton Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.586967, 38.391987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8411, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440922", "POINTID": "1102653994523", "FULLNAME": "Patoka", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.585577, 38.406987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8411, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436605", "POINTID": "1102654013932", "FULLNAME": "Humphrey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.583633, 38.429765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8411, "y": 12577 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292311", "FULLNAME": "Bandmill Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.590668, 38.533595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8411, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438522", "POINTID": "1102654015395", "FULLNAME": "Mann Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.586969, 39.111983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8411, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442105", "POINTID": "1102653996688", "FULLNAME": "Riverview", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.583638, 39.200315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8412, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292469", "FULLNAME": "Deaconess Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.572182, 37.984135 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8412, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435856", "POINTID": "1102653982794", "FULLNAME": "Harwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.574739, 38.003372 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8412, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438214", "POINTID": "1102654015159", "FULLNAME": "Locust Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.581683, 38.012540 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8412, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433029", "POINTID": "1102653974072", "FULLNAME": "Country Club Meadows", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.573073, 38.023095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8412, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442796", "POINTID": "1102654019156", "FULLNAME": "Saint Peters Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.574739, 38.043372 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8412, "y": 12631 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452292", "POINTID": "1102653956786", "FULLNAME": "Clearcrest Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.572239, 38.073651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8412, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433320", "POINTID": "1102653975144", "FULLNAME": "Darmstadt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.578907, 38.099206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8412, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442547", "POINTID": "1102653997311", "FULLNAME": "Saint James", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.577520, 38.176707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8412, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047864813", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.582321, 38.211555 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435880", "POINTID": "1102653982855", "FULLNAME": "Haubstadt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.574186, 38.205042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8412, "y": 12614 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047864811", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.582640, 38.212868 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8412, "y": 12611 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476147575", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.574272, 38.241254 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8412, "y": 12610 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434683", "POINTID": "1102653979547", "FULLNAME": "Fort Branch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.581133, 38.251152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8412, "y": 12609 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433808", "POINTID": "1102653976560", "FULLNAME": "Durham", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.581133, 38.259765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8412, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445432", "POINTID": "1102654021499", "FULLNAME": "Walnut Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.574465, 38.270042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8412, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103931797066", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.577260, 38.302346 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8412, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110130305914", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.576739, 38.324172 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8412, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430236", "POINTID": "1102654006695", "FULLNAME": "Archer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.579411, 38.371714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8412, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436248", "POINTID": "1102654013634", "FULLNAME": "Hitch Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.579188, 38.384208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8412, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452175", "POINTID": "1102653960732", "FULLNAME": "Millers Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.573633, 38.435043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8412, "y": 12581 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445489", "POINTID": "1102654021547", "FULLNAME": "Warth Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.577802, 38.502822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292525", "FULLNAME": "Executive Inn Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.566493, 37.971280 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292469", "FULLNAME": "Deaconess Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.572182, 37.984135 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452056", "POINTID": "1102653959639", "FULLNAME": "Kleymeyer Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.570849, 37.997818 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452319", "POINTID": "1102653957818", "FULLNAME": "Evansville Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.560850, 38.012540 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449079", "POINTID": "1102653961244", "FULLNAME": "North Park Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.571684, 38.020872 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444269", "POINTID": "1102653999696", "FULLNAME": "Stringtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.561682, 38.020872 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432090", "POINTID": "1102654009244", "FULLNAME": "Campground Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.566684, 38.036984 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449471", "POINTID": "1102653990148", "FULLNAME": "Mechanicsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.562237, 38.033929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12622 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444041", "POINTID": "1102653999329", "FULLNAME": "Stacer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.566687, 38.148652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12616 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259493371", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.565225, 38.201099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12609 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110130310437", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.569929, 38.256588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452107", "POINTID": "1102653966430", "FULLNAME": "Baldwin Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.571394, 38.341416 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452074", "POINTID": "1102653995702", "FULLNAME": "Princeton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.567456, 38.355331 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440503", "POINTID": "1102654017134", "FULLNAME": "Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.569465, 38.364766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108672357214", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.565603, 38.370310 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430444", "POINTID": "1102653950672", "FULLNAME": "Bald Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.564248, 38.386548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439134", "POINTID": "1102654016061", "FULLNAME": "Milburn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.571689, 38.417821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434472", "POINTID": "1102654011952", "FULLNAME": "Field Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.560855, 38.442544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430510", "POINTID": "1102654007040", "FULLNAME": "Barnett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.561411, 38.478933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12581 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444281", "POINTID": "1102654020504", "FULLNAME": "Stuart Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.567523, 38.501155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12578 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443555", "POINTID": "1102653998529", "FULLNAME": "Sisson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.561411, 38.530601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12574 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432478", "POINTID": "1102654009824", "FULLNAME": "Chimney Pier Hills Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.561966, 38.557267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12571 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446740", "POINTID": "1102653997414", "FULLNAME": "Saint Thomas", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.562245, 38.586155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292365", "FULLNAME": "Klein Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.562357, 38.652254 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442104", "POINTID": "1102653996661", "FULLNAME": "Riverton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.567802, 39.020317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438702", "POINTID": "1102654015552", "FULLNAME": "Massey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.563079, 39.045873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439023", "POINTID": "1102653990291", "FULLNAME": "Merom", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.567523, 39.056428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8413, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431042", "POINTID": "1102653950965", "FULLNAME": "Big Knoll", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.566413, 39.314758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8414, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434258", "POINTID": "1102653978088", "FULLNAME": "Evansville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.555848, 37.974762 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8414, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452319", "POINTID": "1102653957818", "FULLNAME": "Evansville Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.560850, 38.012540 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8414, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262961366", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.552991, 38.022167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8414, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013782117937", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.553595, 38.025954 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8414, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504163081", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.559941, 38.036524 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8414, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110404753236", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.553544, 38.045704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8414, "y": 12631 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110404795383", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.558833, 38.065815 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729732691", "FULLNAME": "Creekrun Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.555083, 38.068273 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8414, "y": 12630 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436217", "POINTID": "1102653983726", "FULLNAME": "Hillsdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.550572, 38.082818 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8414, "y": 12629 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436217", "POINTID": "1102653983726", "FULLNAME": "Hillsdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.550572, 38.082818 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8414, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436817", "POINTID": "1102653985019", "FULLNAME": "Inglefield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.558905, 38.108096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8414, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452386", "POINTID": "1102653962036", "FULLNAME": "Princeton Waterworks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.550577, 38.390322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8414, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434472", "POINTID": "1102654011952", "FULLNAME": "Field Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.560855, 38.442544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8414, "y": 12587 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439457", "POINTID": "1102654016250", "FULLNAME": "Morrison Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.559190, 38.446711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8414, "y": 12578 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433533", "POINTID": "1102654011307", "FULLNAME": "Dick Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.561134, 38.526711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8414, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435374", "POINTID": "1102653981483", "FULLNAME": "Graysville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.556135, 39.117540 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8415, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449080", "POINTID": "1102653956959", "FULLNAME": "Covert and Lodge Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.539457, 37.955318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8415, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110404846969", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.550119, 38.022717 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013782117935", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.549169, 38.025916 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8415, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449052", "POINTID": "1102653977961", "FULLNAME": "Erskine Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.541128, 38.040873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8415, "y": 12630 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103941710823", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.547541, 38.074582 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110404811507", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.541471, 38.078431 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8415, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504263821", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.538982, 38.101557 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8415, "y": 12626 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013780720437", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.540503, 38.115579 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8415, "y": 12625 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013780716140", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.540404, 38.119135 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8415, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475906760", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.540210, 38.172480 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8415, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442629", "POINTID": "1102654019019", "FULLNAME": "Saint Josephs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.544743, 38.343099 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438565", "POINTID": "1102654015416", "FULLNAME": "Maple Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.540854, 38.343653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8415, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435943", "POINTID": "1102653982994", "FULLNAME": "Hazleton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.541688, 38.488933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8415, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452064", "POINTID": "1102653990307", "FULLNAME": "Merom Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.539746, 39.030317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8415, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431879", "POINTID": "1102654008993", "FULLNAME": "Burton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.545857, 39.094206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8415, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437035", "POINTID": "1102654014240", "FULLNAME": "Johnson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.541691, 39.135316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8415, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449038", "POINTID": "1102653951994", "FULLNAME": "Fairbanks Mound", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.543357, 39.241982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12645 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01964742", "POINTID": "1102654017124", "FULLNAME": "Oates Memorial Pk", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.538346, 37.950039 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452259", "POINTID": "1102653957861", "FULLNAME": "Fairlawn Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.530568, 37.947539 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440430", "POINTID": "1102654017065", "FULLNAME": "Oak Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.534736, 37.986151 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444426", "POINTID": "1102654020601", "FULLNAME": "Sunset Memorial Gardens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.528071, 38.029484 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292538", "FULLNAME": "Evansville Regional Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.530860, 38.038412 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12632 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104474614016", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.536083, 38.057862 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729739986", "FULLNAME": "Country Side Ln", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.538757, 38.099833 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504263861", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.538762, 38.103484 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729739986", "FULLNAME": "Country Side Ln", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.538757, 38.099833 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12626 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730235809", "FULLNAME": "N Pointe Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.536024, 38.111724 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12622 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110404799368", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.535573, 38.149846 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013782287586", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.528543, 38.148129 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103727746421", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.535452, 38.174744 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010952302318", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.530378, 38.174725 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072910624", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.537236, 38.357786 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433405", "POINTID": "1102654011178", "FULLNAME": "Decker Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.536686, 38.412826 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442132", "POINTID": "1102654018631", "FULLNAME": "Robb Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.535576, 38.432820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444913", "POINTID": "1102654021049", "FULLNAME": "Trippet Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.531410, 38.439766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446746", "POINTID": "1102653975365", "FULLNAME": "Decker Chapel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.536965, 38.489489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113808779", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.536002, 38.650656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431810", "POINTID": "1102653951264", "FULLNAME": "Bunker Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.535299, 38.655878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449919", "POINTID": "1102654015918", "FULLNAME": "Memorial Park Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.537488, 38.665204 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12561 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292338", "FULLNAME": "Good Samaritan Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.538067, 38.672655 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435439", "POINTID": "1102654012865", "FULLNAME": "Greenlawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.537716, 38.670302 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12560 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445300", "POINTID": "1102654001559", "FULLNAME": "Vincennes", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.528631, 38.677266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440557", "POINTID": "1102654017235", "FULLNAME": "Old French Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.535857, 39.025039 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438426", "POINTID": "1102654015354", "FULLNAME": "Lykens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.536415, 39.279758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445288", "POINTID": "1102654001552", "FULLNAME": "Vigo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.537247, 39.287257 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443316", "POINTID": "1102654019567", "FULLNAME": "Shattuck Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.532802, 39.303369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436664", "POINTID": "1102653984691", "FULLNAME": "Hutton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.533910, 39.317535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444087", "POINTID": "1102653999403", "FULLNAME": "State Line", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.529468, 39.436978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442999", "POINTID": "1102653997612", "FULLNAME": "Sandford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.530579, 39.545312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441682", "POINTID": "1102653995845", "FULLNAME": "Quaker", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.528073, 39.855867 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8416, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431602", "POINTID": "1102654008571", "FULLNAME": "Brown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.528350, 39.975034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449076", "POINTID": "1102653963573", "FULLNAME": "Weinbach Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.527792, 37.977818 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444426", "POINTID": "1102654020601", "FULLNAME": "Sunset Memorial Gardens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.528071, 38.029484 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437402", "POINTID": "1102653986436", "FULLNAME": "Knob Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.518627, 38.032262 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12632 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438847", "POINTID": "1102653989984", "FULLNAME": "McCutchanville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.524461, 38.064208 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110404827034", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.517913, 38.062090 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12631 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104474614312", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.526561, 38.072219 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013782230240", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.522210, 38.098723 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013782230236", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.519332, 38.099932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12622 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444904", "POINTID": "1102654021041", "FULLNAME": "Trinity Parish Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.527239, 38.144763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010952303057", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.526757, 38.174869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12579 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433402", "POINTID": "1102653975352", "FULLNAME": "Decker", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.523071, 38.518934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12577 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432115", "POINTID": "1102653971408", "FULLNAME": "Cantaloupe", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.519469, 38.531432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12576 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445317", "POINTID": "1102654001604", "FULLNAME": "Vollmer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.520021, 38.547544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449714", "POINTID": "1102653995802", "FULLNAME": "Purcell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.519190, 38.595598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113808708", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.520687, 38.664454 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437496", "POINTID": "1102653953134", "FULLNAME": "Ladd Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.518914, 39.138651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437496", "POINTID": "1102653953134", "FULLNAME": "Ladd Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.518914, 39.138651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433595", "POINTID": "1102653975967", "FULLNAME": "Dodds Bridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.523913, 39.157259 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442011", "POINTID": "1102654018541", "FULLNAME": "Riggs-Ernest Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.520579, 39.213924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434287", "POINTID": "1102653978210", "FULLNAME": "Fairbanks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.522245, 39.219483 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441386", "POINTID": "1102654017992", "FULLNAME": "Pogue Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.519469, 39.234759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445552", "POINTID": "1102654021570", "FULLNAME": "Watson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.523358, 39.291704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350989778", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.522258, 39.293111 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445552", "POINTID": "1102654021570", "FULLNAME": "Watson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.523358, 39.291704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437848", "POINTID": "1102653987959", "FULLNAME": "Libertyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.518635, 39.602812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446662", "POINTID": "1102654000609", "FULLNAME": "Tighe", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.523079, 39.620865 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431177", "POINTID": "1102653968354", "FULLNAME": "Blanford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.520577, 39.665033 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431177", "POINTID": "1102653968354", "FULLNAME": "Blanford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.520577, 39.665033 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445730", "POINTID": "1102654002242", "FULLNAME": "West Clinton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.525300, 39.694479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442503", "POINTID": "1102653997291", "FULLNAME": "Saint Bernice", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.521360, 39.709209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441760", "POINTID": "1102653996043", "FULLNAME": "Randall", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.522519, 39.774755 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441760", "POINTID": "1102653996043", "FULLNAME": "Randall", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.522519, 39.774755 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445734", "POINTID": "1102654002262", "FULLNAME": "West Dana", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.524463, 39.803090 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441682", "POINTID": "1102653995845", "FULLNAME": "Quaker", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.528073, 39.855867 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440572", "POINTID": "1102654017261", "FULLNAME": "Old Hopewell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.521684, 39.861700 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435785", "POINTID": "1102654013185", "FULLNAME": "Harrison Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.525571, 40.063367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442041", "POINTID": "1102653996528", "FULLNAME": "Rileysburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.525847, 40.104201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449734", "POINTID": "1102653999405", "FULLNAME": "State Line", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.526958, 40.197255 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430128", "POINTID": "1102653964844", "FULLNAME": "Ambia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.516961, 40.490033 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434583", "POINTID": "1102654012032", "FULLNAME": "Fleming Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.520300, 40.722813 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447634", "POINTID": "1102653977238", "FULLNAME": "Effner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.525303, 40.770591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436711", "POINTID": "1102653984809", "FULLNAME": "Illinoi", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.526142, 41.189754 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434891", "POINTID": "1102654012277", "FULLNAME": "Fuller Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.518369, 41.309478 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12242 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437373", "POINTID": "1102653986284", "FULLNAME": "Klaasville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.517538, 41.355867 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047290500", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.519751, 41.442835 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437453", "POINTID": "1102653986581", "FULLNAME": "Kreitzburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.521151, 41.435868 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047290500", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.519751, 41.442835 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047477051", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.522508, 41.464132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046074049", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.522653, 41.472320 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718620222", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.517664, 41.474981 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045924626", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.520899, 41.483521 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045961949", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.522902, 41.490019 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045954044", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.523758, 41.484138 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045961889", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.524828, 41.499904 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292626", "FULLNAME": "St Margaret Mercy Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.523613, 41.493332 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433824", "POINTID": "1102653976600", "FULLNAME": "Dyer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.521706, 41.494202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045961851", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.524917, 41.507677 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045961888", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.524823, 41.500846 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045961740", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.522706, 41.515952 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045961645", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.520874, 41.522652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102817256160", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.521808, 41.531742 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045961178", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.519032, 41.527835 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270799478", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.519665, 41.533706 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110272089636", "FULLNAME": "Sunnyside Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -87.522840, 41.570964 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690870669", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.522084, 41.578051 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048496987", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.517422, 41.575808 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047463145", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.517414, 41.590095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440436", "POINTID": "1102654017075", "FULLNAME": "Oak Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.520043, 41.598090 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292729", "FULLNAME": "Franciscan St Margaret Health - Hammond Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.524021, 41.614215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449081", "POINTID": "1102653956974", "FULLNAME": "Covert and Vann Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.511122, 37.955873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452425", "POINTID": "1102653963581", "FULLNAME": "Wesselman Park Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.516679, 37.981985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437567", "POINTID": "1102653987062", "FULLNAME": "Lakewood Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.513624, 38.002263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103727762503", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.516682, 38.007519 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438974", "POINTID": "1102653990220", "FULLNAME": "Melody Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.515848, 38.026150 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430972", "POINTID": "1102654007554", "FULLNAME": "Bethlehem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.510848, 38.035594 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729880295", "FULLNAME": "Glen Cv", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.507340, 38.043736 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12632 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110404827029", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.514402, 38.062087 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12631 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013780676090", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.515215, 38.067120 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12630 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013782229942", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.513973, 38.077612 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12629 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110404827004", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.515679, 38.085151 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729751178", "FULLNAME": "Crescendo Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.511015, 38.084894 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013782230238", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.517299, 38.097956 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013782230229", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.516623, 38.099786 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12616 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444305", "POINTID": "1102654020533", "FULLNAME": "Stunkel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.508351, 38.203653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444305", "POINTID": "1102654020533", "FULLNAME": "Stunkel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.508351, 38.203653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12579 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430738", "POINTID": "1102654007299", "FULLNAME": "Beedell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.509464, 38.520044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12561 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436776", "POINTID": "1102653959116", "FULLNAME": "Indian Mound", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.506130, 38.670599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439131", "POINTID": "1102654016056", "FULLNAME": "Milam Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.508078, 38.973096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292445", "FULLNAME": "Mann Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.516803, 38.987806 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443422", "POINTID": "1102654019707", "FULLNAME": "Shirley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.506688, 39.618088 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436881", "POINTID": "1102654014180", "FULLNAME": "Jackson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.511409, 39.668366 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436594", "POINTID": "1102654013914", "FULLNAME": "Hughes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.507238, 40.014201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292495", "FULLNAME": "Gessie Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.514000, 40.077205 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12383 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439492", "POINTID": "1102654016285", "FULLNAME": "Mosonic Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.506959, 40.184478 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440987", "POINTID": "1102653994639", "FULLNAME": "Pence", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.511404, 40.361144 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12361 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437111", "POINTID": "1102654014307", "FULLNAME": "Jordan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.506959, 40.366977 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430128", "POINTID": "1102653964844", "FULLNAME": "Ambia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.516961, 40.490033 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12341 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444819", "POINTID": "1102654020986", "FULLNAME": "Totheroh Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.514185, 40.535311 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439428", "POINTID": "1102654016226", "FULLNAME": "Morgan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.507807, 41.025032 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292691", "FULLNAME": "Lowell Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.507691, 41.230135 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431673", "POINTID": "1102654008675", "FULLNAME": "Brunswick Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.507815, 41.360868 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431672", "POINTID": "1102653970169", "FULLNAME": "Brunswick", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.508094, 41.377813 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040151", "POINTID": "1102654022411", "FULLNAME": "Zion Evangelical Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.513372, 41.412813 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046074421", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.510438, 41.441954 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045924892", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.513815, 41.456472 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045924849", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.512463, 41.466015 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045924848", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.511159, 41.466626 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045924822", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.514904, 41.473940 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045924790", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.512093, 41.484042 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045924797", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.512122, 41.481651 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046074506", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.513042, 41.477628 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104474610234", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.509531, 41.476080 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046074004", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.511707, 41.488661 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045924790", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.512093, 41.484042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040149", "POINTID": "1102654019016", "FULLNAME": "Saint Joseph Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.515320, 41.493091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045962247", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.515049, 41.502585 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270803068", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.505935, 41.524750 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438762", "POINTID": "1102653989845", "FULLNAME": "Maynard", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.508678, 41.541436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292610", "FULLNAME": "Community Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.506710, 41.549576 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438762", "POINTID": "1102653989845", "FULLNAME": "Maynard", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.508678, 41.541436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103717828168", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.515363, 41.554196 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103717828233", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.510486, 41.552408 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292610", "FULLNAME": "Community Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.506710, 41.549576 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103717835323", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.515081, 41.563254 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110272089639", "FULLNAME": "Community Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -87.507557, 41.558094 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110272089592", "FULLNAME": "Eads Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.515853, 41.568225 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110272089588", "FULLNAME": "Hammond Clinic", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -87.508346, 41.569915 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047463471", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.517240, 41.592827 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432868", "POINTID": "1102654010448", "FULLNAME": "Concordia Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.506986, 41.594203 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442162", "POINTID": "1102653996775", "FULLNAME": "Robertsdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.508096, 41.683091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729888768", "FULLNAME": "Harrelton Dr", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.502343, 37.957461 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292460", "FULLNAME": "St Mary's Medical Ctr", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.502697, 37.964410 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110404812179", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.502166, 37.994436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730309549", "FULLNAME": "Pigeonbrook Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.497869, 38.010363 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103728386727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.495066, 38.019406 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013782117364", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.504843, 38.038374 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110404755685", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.503040, 38.034578 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729797048", "FULLNAME": "Eastbourne Dr", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.496968, 38.034481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013780745460", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.499315, 38.097688 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12626 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431224", "POINTID": "1102654007824", "FULLNAME": "Blue Grass Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.498904, 38.115318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433652", "POINTID": "1102653976104", "FULLNAME": "Douglas", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.501686, 38.330598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437353", "POINTID": "1102654014589", "FULLNAME": "Kirk-Mcroberts Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.499741, 38.423655 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441083", "POINTID": "1102654017821", "FULLNAME": "Phillips Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.495297, 38.480323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12572 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445808", "POINTID": "1102654021739", "FULLNAME": "West Salem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.496965, 38.579211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113833016", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.501565, 38.668450 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046959325", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.496504, 38.664182 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046959324", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.494996, 38.664605 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12561 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436776", "POINTID": "1102653959116", "FULLNAME": "Indian Mound", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.506130, 38.670599 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113808693", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.505208, 38.674674 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113812163", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.503647, 38.672618 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504195545", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.499320, 38.687786 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12555 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944442676", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.500541, 38.723657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292381", "FULLNAME": "Ed-Air Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.498446, 38.850863 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430810", "POINTID": "1102654007387", "FULLNAME": "Bennett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.500578, 39.049206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433373", "POINTID": "1102654011162", "FULLNAME": "Debaun Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.503357, 39.220593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445803", "POINTID": "1102654021729", "FULLNAME": "West Prairie Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.502802, 39.274759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447631", "POINTID": "1102653995624", "FULLNAME": "Prairie Creek", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.497247, 39.275037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440053", "POINTID": "1102654016751", "FULLNAME": "New Harmony Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.498078, 39.346424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452306", "POINTID": "1102653957288", "FULLNAME": "Dresser Power Plant", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.495023, 39.402812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109097363672", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.498400, 39.430589 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350985042", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.500436, 39.460863 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434686", "POINTID": "1102654012112", "FULLNAME": "Fort Hamilton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.501689, 39.558922 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443419", "POINTID": "1102653998305", "FULLNAME": "Shirkieville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.498634, 39.600311 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433961", "POINTID": "1102653977024", "FULLNAME": "Easytown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.500299, 39.610590 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444297", "POINTID": "1102654020521", "FULLNAME": "Stults Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.500578, 39.606978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435223", "POINTID": "1102654012634", "FULLNAME": "Gorton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.501410, 39.661699 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431327", "POINTID": "1102654008005", "FULLNAME": "Bono Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.500299, 39.682811 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437106", "POINTID": "1102653985601", "FULLNAME": "Jonestown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.503909, 39.709201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452163", "POINTID": "1102654000765", "FULLNAME": "Toronto", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.495573, 39.781700 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433305", "POINTID": "1102653975036", "FULLNAME": "Dana", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.495018, 39.807811 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437720", "POINTID": "1102654014910", "FULLNAME": "Lebanon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.498073, 39.854757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440926", "POINTID": "1102654017692", "FULLNAME": "Patrick Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.500294, 39.946977 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435046", "POINTID": "1102653980632", "FULLNAME": "Gessie", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.499736, 40.082535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431236", "POINTID": "1102654007828", "FULLNAME": "Blue Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.500854, 40.693368 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445733", "POINTID": "1102654021687", "FULLNAME": "West Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.502552, 41.243090 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019626215102", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.498738, 41.425805 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109073006980", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.505004, 41.431452 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109073006979", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.504639, 41.428550 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096715425", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.495069, 41.433610 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046074429", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.503459, 41.450881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270753820", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.505867, 41.456721 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046074433", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.505157, 41.452308 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052108299", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.495302, 41.453245 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096499692", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.501876, 41.466546 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052107288", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.495627, 41.466616 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046074000", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.501356, 41.483909 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718616108", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.503663, 41.481026 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046073850", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.501890, 41.488444 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052108817", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.496874, 41.486419 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046073852", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.501520, 41.494405 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270803375", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.497612, 41.510433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270803068", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.505935, 41.524750 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045962498", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.501310, 41.520449 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110272089642", "FULLNAME": "Lakewood Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -87.505358, 41.533405 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270803013", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.504146, 41.527977 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270803049", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.498899, 41.528178 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110272089642", "FULLNAME": "Lakewood Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -87.505358, 41.533405 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110272089596", "FULLNAME": "F H Hammond Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.498510, 41.543770 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110272089593", "FULLNAME": "Wilbur Wright Mid Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.502072, 41.557807 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110272089637", "FULLNAME": "Ridgeway Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -87.503778, 41.563232 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103717833292", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.498870, 41.561468 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110272089593", "FULLNAME": "Wilbur Wright Mid Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.502072, 41.557807 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435658", "POINTID": "1102653982192", "FULLNAME": "Hammond", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.500042, 41.583368 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040000", "POINTID": "1102653956857", "FULLNAME": "Columbia Plaza Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.498373, 41.596979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292663", "FULLNAME": "Horseshoe Casino Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.500618, 41.687592 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8419, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446948", "POINTID": "1102653958589", "FULLNAME": "Hammond Water Filtration Plant", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.505876, 41.693092 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013782289164", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.491727, 37.943906 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436917", "POINTID": "1102654014193", "FULLNAME": "James Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.493621, 37.937261 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12645 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110404812315", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.485754, 37.952214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445525", "POINTID": "1102653963486", "FULLNAME": "Washington Square Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.490568, 37.960595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452354", "POINTID": "1102653960050", "FULLNAME": "Lawndale Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.490568, 37.964207 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449077", "POINTID": "1102653958720", "FULLNAME": "Harrison Village Mall", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.493902, 37.975595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443719", "POINTID": "1102653998706", "FULLNAME": "Smythe", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.492513, 37.991428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110404803830", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.486314, 38.003351 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103728386727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.495066, 38.019406 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729889854", "FULLNAME": "High Tower Dr", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.493216, 38.028690 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12633 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730301502", "FULLNAME": "Palmetto Cir", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.487438, 38.052275 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12632 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729887787", "FULLNAME": "Hartsaw Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.492655, 38.060732 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12616 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475905795", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.490780, 38.201162 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475921276", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.493097, 38.204227 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12586 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430260", "POINTID": "1102654006711", "FULLNAME": "Armstrong Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.487242, 38.455044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441083", "POINTID": "1102654017821", "FULLNAME": "Phillips Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.495297, 38.480323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436152", "POINTID": "1102654013526", "FULLNAME": "Highland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.488076, 38.643378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046959324", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.494996, 38.664605 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12558 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010936269467", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.486566, 38.695251 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12557 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113814377", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.488548, 38.706410 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113814986", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.487470, 38.716745 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12555 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016955053003", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.485507, 38.720108 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446249", "POINTID": "1102653955452", "FULLNAME": "Wolf Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.484463, 38.798932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436324", "POINTID": "1102654013725", "FULLNAME": "Hollenback Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.493079, 39.006429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431849", "POINTID": "1102654008896", "FULLNAME": "Burnett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.489466, 39.049483 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441440", "POINTID": "1102654018015", "FULLNAME": "Poplar Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.494468, 39.110872 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430077", "POINTID": "1102654006521", "FULLNAME": "Alkire Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.488358, 39.165037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441243", "POINTID": "1102654017900", "FULLNAME": "Pleasant Green Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.488358, 39.193927 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452306", "POINTID": "1102653957288", "FULLNAME": "Dresser Power Plant", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.495023, 39.402812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443335", "POINTID": "1102654019583", "FULLNAME": "Sheets Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.488358, 39.425590 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446683", "POINTID": "1102653995017", "FULLNAME": "Pine Ridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.491689, 39.579201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443906", "POINTID": "1102654020094", "FULLNAME": "Spangler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.494465, 39.664755 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443906", "POINTID": "1102654020094", "FULLNAME": "Spangler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.494465, 39.664755 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431326", "POINTID": "1102653968873", "FULLNAME": "Bono", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.493908, 39.760311 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433305", "POINTID": "1102653975036", "FULLNAME": "Dana", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.495018, 39.807811 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434564", "POINTID": "1102653979128", "FULLNAME": "Flat Iron", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.490013, 40.053367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430319", "POINTID": "1102654006792", "FULLNAME": "Ater Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.485292, 40.063090 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110132756399", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.493025, 40.109069 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12383 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435216", "POINTID": "1102654012623", "FULLNAME": "Gopher Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.490013, 40.185033 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437068", "POINTID": "1102653985525", "FULLNAME": "Johnsonville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.486403, 40.227533 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12369 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435978", "POINTID": "1102653983057", "FULLNAME": "Hedrick", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.490847, 40.301701 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12337 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433799", "POINTID": "1102653976502", "FULLNAME": "Dunnington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.490850, 40.564200 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12331 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434812", "POINTID": "1102653979939", "FULLNAME": "Freeland Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.491131, 40.614480 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441790", "POINTID": "1102653996083", "FULLNAME": "Raub", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.491689, 40.730035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12307 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433644", "POINTID": "1102654011392", "FULLNAME": "Dorne Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.491692, 40.819479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439736", "POINTID": "1102654016564", "FULLNAME": "Mount Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.485579, 40.837812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346936006", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.485440, 41.135526 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476294128", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.484402, 41.409720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040006", "POINTID": "1102653961634", "FULLNAME": "Palmira Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.484327, 41.414447 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476294128", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.484402, 41.409720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096715425", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.495069, 41.433610 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096539217", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.490257, 41.441711 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489687631", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.491193, 41.436419 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102216626956", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.485314, 41.437472 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052108329", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.493942, 41.450855 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052108299", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.495302, 41.453245 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052108298", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.492269, 41.453328 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052108329", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.493942, 41.450855 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047317150", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.484016, 41.459081 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052106858", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.492867, 41.465593 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311918295", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.487932, 41.466411 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052108241", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.488876, 41.463141 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047317150", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.484016, 41.459081 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270807491", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.493154, 41.479886 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052108940", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.487012, 41.483083 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052108844", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.493406, 41.488370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045906552", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.488189, 41.498728 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045906593", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.486314, 41.496113 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046073845", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.491021, 41.501509 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103720020565", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.484125, 41.506876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045962513", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.493857, 41.516260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045962607", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.493065, 41.523835 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045962643", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.489310, 41.522845 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270778177", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.494055, 41.528803 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109092705589", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.489452, 41.534571 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110272089643", "FULLNAME": "Stewart Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -87.490429, 41.543983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104493012705", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.494001, 41.554784 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110272089638", "FULLNAME": "Beech Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -87.492628, 41.564384 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452417", "POINTID": "1102653963794", "FULLNAME": "Woodmar Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.485029, 41.573378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434136", "POINTID": "1102654011639", "FULLNAME": "Elmwood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.494763, 41.589479 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446301", "POINTID": "1102654003279", "FULLNAME": "Woodmar", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.490319, 41.585035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292735", "FULLNAME": "Escc Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.492931, 41.594359 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445988", "POINTID": "1102654002866", "FULLNAME": "Whiting", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.494487, 41.679755 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8420, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446847", "POINTID": "1102653963680", "FULLNAME": "Whiting Robertsdale Boat Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.484756, 41.682638 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12645 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110404812303", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.482889, 37.952355 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103728677789", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.478619, 37.952637 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072811412", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.475365, 37.944428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110404759889", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.475470, 37.961119 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072787436", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.475934, 37.964554 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104486760861", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.476481, 37.985881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440190", "POINTID": "1102654016902", "FULLNAME": "Nobles Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.473069, 38.172541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12616 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475909403", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.474580, 38.198576 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12587 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439635", "POINTID": "1102653991717", "FULLNAME": "Mt Olympus", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.475019, 38.447266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12577 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437034", "POINTID": "1102654014239", "FULLNAME": "Johnson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.476964, 38.531711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047930910", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.483079, 38.688041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12558 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016955053895", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.483487, 38.700677 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113810349", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.476154, 38.701387 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12557 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472491245", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.480252, 38.703666 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113815908", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.478506, 38.706521 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445611", "POINTID": "1102654021607", "FULLNAME": "Webb Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.483911, 38.998375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439733", "POINTID": "1102654016558", "FULLNAME": "Mount Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.479745, 39.046984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432486", "POINTID": "1102654009846", "FULLNAME": "Chowning Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.473356, 39.193649 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12479 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441563", "POINTID": "1102653995639", "FULLNAME": "Prairieton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.474467, 39.370035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437878", "POINTID": "1102653987975", "FULLNAME": "Liggett", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.483635, 39.479200 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446684", "POINTID": "1102654002415", "FULLNAME": "West New Goshen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.480577, 39.570867 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432301", "POINTID": "1102653972044", "FULLNAME": "Centenary", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.473354, 39.658366 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436130", "POINTID": "1102654013513", "FULLNAME": "Higbie Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.475575, 39.731146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430455", "POINTID": "1102654006940", "FULLNAME": "Bales Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.476406, 39.786422 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445436", "POINTID": "1102654021506", "FULLNAME": "Walnut Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.476406, 39.862258 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435515", "POINTID": "1102654012936", "FULLNAME": "Groenendyke Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.475848, 39.967535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12369 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443611", "POINTID": "1102653998586", "FULLNAME": "Sloan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.476124, 40.301978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262931706", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.479740, 41.129757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292704", "FULLNAME": "Wietbrock Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.480145, 41.259187 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292640", "FULLNAME": "Sutton's Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.474590, 41.324188 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270676922", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.478437, 41.343440 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040006", "POINTID": "1102653961634", "FULLNAME": "Palmira Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.484327, 41.414447 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718660491", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.483688, 41.431560 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047291021", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.479767, 41.427092 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047291022", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.478461, 41.427086 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270683361", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.483396, 41.441315 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047290984", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.476959, 41.436011 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047317150", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.484016, 41.459081 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047317150", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.484016, 41.459081 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103687685128", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.479182, 41.472296 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103687681372", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.476049, 41.472171 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052108931", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.481132, 41.488836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045906576", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.482758, 41.498929 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045906595", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.479979, 41.495635 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103720020565", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.484125, 41.506876 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047042085", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.481344, 41.503282 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046073828", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.476360, 41.509614 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270735733", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.477439, 41.525138 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046073807", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.483294, 41.521244 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045962726", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.478978, 41.531503 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046073768", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.472989, 41.532983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02039989", "POINTID": "1102653957509", "FULLNAME": "Eastwood Mall Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.483374, 41.536981 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045963392", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.476956, 41.534344 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103708796572", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.483050, 41.547655 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105599163088", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.481744, 41.544381 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105599163090", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.475757, 41.547619 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103717829834", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.483501, 41.556561 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052184002", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.481457, 41.550971 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052184005", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.477291, 41.550023 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02039997", "POINTID": "1102653963705", "FULLNAME": "Wicker Park Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.477541, 41.564757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040834", "POINTID": "1102653963809", "FULLNAME": "Woodmar Mall Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.482540, 41.593924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12645 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110404796955", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.470422, 37.952381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110404763098", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.471938, 37.957148 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110404765747", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.462496, 37.955832 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104486749725", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.466592, 38.016642 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12625 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434097", "POINTID": "1102653977485", "FULLNAME": "Elliott", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.472793, 38.121707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440190", "POINTID": "1102654016902", "FULLNAME": "Nobles Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.473069, 38.172541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292256", "FULLNAME": "Hollingsworth Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.465498, 38.335519 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435091", "POINTID": "1102653980770", "FULLNAME": "Giro", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.470854, 38.511156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12575 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436824", "POINTID": "1102653985052", "FULLNAME": "Iona", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.471685, 38.548656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12566 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472481241", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.463510, 38.632775 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504200908", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.470838, 38.693568 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113809776", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.463422, 38.692237 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12558 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504201001", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.468432, 38.694414 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472483110", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.463800, 38.698000 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436301", "POINTID": "1102654013696", "FULLNAME": "Hoke Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.464741, 38.763932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440913", "POINTID": "1102654017673", "FULLNAME": "Parson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.462523, 39.020874 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440072", "POINTID": "1102653992598", "FULLNAME": "New Lebanon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.471133, 39.040874 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432486", "POINTID": "1102654009846", "FULLNAME": "Chowning Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.473356, 39.193649 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443144", "POINTID": "1102653997863", "FULLNAME": "Scott City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.465023, 39.193927 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350993947", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.470433, 39.287296 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437632", "POINTID": "1102653987269", "FULLNAME": "Larimer Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.471964, 39.455588 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444789", "POINTID": "1102654000718", "FULLNAME": "Toad Hop", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.463631, 39.458931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452402", "POINTID": "1102653963004", "FULLNAME": "Terre Haute Saddle Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.470022, 39.492533 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442687", "POINTID": "1102653997354", "FULLNAME": "Saint Mary-Of-The-Woods", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.467246, 39.510866 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110351476062", "FULLNAME": "Fayette Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.465422, 39.579941 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440049", "POINTID": "1102653992530", "FULLNAME": "New Goshen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.462244, 39.581144 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292483", "FULLNAME": "Universal Mine Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.461965, 39.613923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435613", "POINTID": "1102654013060", "FULLNAME": "Hall Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.472522, 39.625311 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432301", "POINTID": "1102653972044", "FULLNAME": "Centenary", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.473354, 39.658366 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430171", "POINTID": "1102654006665", "FULLNAME": "Andrews Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.467520, 39.743090 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434244", "POINTID": "1102653978028", "FULLNAME": "Eugene", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.472793, 39.966423 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434245", "POINTID": "1102654011727", "FULLNAME": "Eugene Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.470570, 39.960591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436855", "POINTID": "1102654014163", "FULLNAME": "Isle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.465291, 39.983646 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12387 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434696", "POINTID": "1102653979605", "FULLNAME": "Foster", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.471401, 40.146700 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444145", "POINTID": "1102653999501", "FULLNAME": "Stewart", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.472514, 40.360033 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444533", "POINTID": "1102654000210", "FULLNAME": "Tab", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.472793, 40.411145 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435669", "POINTID": "1102653982245", "FULLNAME": "Handy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.471404, 40.500866 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12338 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433791", "POINTID": "1102653976483", "FULLNAME": "Dunn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.463907, 40.563923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12337 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433791", "POINTID": "1102653976483", "FULLNAME": "Dunn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.463907, 40.563923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437544", "POINTID": "1102654014731", "FULLNAME": "Lake Village Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.468641, 41.143922 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452945", "POINTID": "1102654014718", "FULLNAME": "Lake Prairie Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.469229, 41.289219 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12243 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435041", "POINTID": "1102654012473", "FULLNAME": "German Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.469234, 41.348647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12240 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270680488", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.468204, 41.372242 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047490964", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.464025, 41.375937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432911", "POINTID": "1102653973793", "FULLNAME": "Cook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.469733, 41.377257 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040147", "POINTID": "1102654013757", "FULLNAME": "Holy Name Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.467260, 41.378646 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491305", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.464124, 41.392705 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491304", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.463792, 41.399097 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491301", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.462274, 41.395820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102338826712", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.463405, 41.409311 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435578", "POINTID": "1102654013022", "FULLNAME": "Hack Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.462815, 41.442813 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718639541", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.471069, 41.435144 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040148", "POINTID": "1102654018942", "FULLNAME": "Saint John Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.470873, 41.448647 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435578", "POINTID": "1102654013022", "FULLNAME": "Hack Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.462815, 41.442813 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491986", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.464993, 41.452690 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096703717", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.467772, 41.467553 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105598350039", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.462719, 41.462016 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047489874", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.462019, 41.466395 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096703717", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.467772, 41.467553 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718638651", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.463743, 41.471665 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045907009", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.462255, 41.482894 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045907010", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.463759, 41.477463 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040008", "POINTID": "1102653963036", "FULLNAME": "The Crossroads Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.469427, 41.491749 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045906990", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.469553, 41.487347 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435838", "POINTID": "1102653982684", "FULLNAME": "Hartsdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.471358, 41.507766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046073768", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.472989, 41.532983 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040002", "POINTID": "1102653958857", "FULLNAME": "Highland Grove Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.468097, 41.525869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047034792", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.465704, 41.543841 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045954045", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.468534, 41.564486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02039992", "POINTID": "1102653959461", "FULLNAME": "Interstate Plaza Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.470977, 41.570745 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442699", "POINTID": "1102654019086", "FULLNAME": "Saint Marys Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.463373, 41.589481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440710", "POINTID": "1102653994194", "FULLNAME": "Osborn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.468928, 41.592534 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110404765922", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.461152, 37.955735 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013782114284", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.459833, 38.004516 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013782114590", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.458419, 38.009157 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013782114588", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.456429, 38.008278 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072787379", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.451883, 38.006392 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12617 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446061", "POINTID": "1102654022021", "FULLNAME": "Williams Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.456681, 38.194486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443630", "POINTID": "1102654019906", "FULLNAME": "Slow Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.455576, 38.595877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12569 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292373", "FULLNAME": "T & T Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.461799, 38.604197 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471587684", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.460645, 38.692427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434167", "POINTID": "1102653977717", "FULLNAME": "Emison", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.458076, 38.805044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440704", "POINTID": "1102654017504", "FULLNAME": "Orndorff Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.456965, 38.881431 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430308", "POINTID": "1102654006776", "FULLNAME": "Asher Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.453355, 38.881986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437803", "POINTID": "1102654014948", "FULLNAME": "Lewis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.459189, 38.986430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259439331", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.455490, 39.381431 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452401", "POINTID": "1102653962985", "FULLNAME": "Terre Haute Federal Penitentiary", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.451411, 39.416979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434456", "POINTID": "1102653978744", "FULLNAME": "Ferguson Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.456413, 39.481701 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445918", "POINTID": "1102654002752", "FULLNAME": "Whitcomb Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.454745, 39.488366 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440049", "POINTID": "1102653992530", "FULLNAME": "New Goshen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.462244, 39.581144 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292483", "FULLNAME": "Universal Mine Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.461965, 39.613923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445146", "POINTID": "1102654001199", "FULLNAME": "Universal", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.451411, 39.621702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431290", "POINTID": "1102654007905", "FULLNAME": "Bogart Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.456963, 39.772257 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439191", "POINTID": "1102654016088", "FULLNAME": "Miller Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.458349, 39.856978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432255", "POINTID": "1102653971859", "FULLNAME": "Cayuga", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.459736, 39.948645 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443671", "POINTID": "1102654019945", "FULLNAME": "Smith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.451403, 40.026423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12375 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438659", "POINTID": "1102653989572", "FULLNAME": "Marshfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.452789, 40.249200 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444550", "POINTID": "1102654000251", "FULLNAME": "Talbot", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.454181, 40.505312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12344 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444550", "POINTID": "1102654000251", "FULLNAME": "Talbot", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.454181, 40.505312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12331 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434798", "POINTID": "1102653979898", "FULLNAME": "Free", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.457242, 40.621701 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12292 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439891", "POINTID": "1102654016631", "FULLNAME": "Murphy Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.458636, 40.942532 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12290 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440466", "POINTID": "1102654017105", "FULLNAME": "Oakland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.452108, 40.961688 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346935751", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.454645, 41.133961 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292596", "FULLNAME": "Lake Village Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.461756, 41.145378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12255 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442996", "POINTID": "1102654019289", "FULLNAME": "Sanders Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.457810, 41.246700 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430788", "POINTID": "1102653967589", "FULLNAME": "Belshaw", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.453366, 41.256422 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440264", "POINTID": "1102653993292", "FULLNAME": "North Hayden", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.458360, 41.290061 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11025367155884", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.458787, 41.365669 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11025367155898", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.456201, 41.367715 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11025367155776", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.451089, 41.363367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12240 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047490978", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.454763, 41.374299 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452914", "POINTID": "1102653960902", "FULLNAME": "Monastery Golf Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.452226, 41.383971 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491301", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.462274, 41.395820 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491300", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.460544, 41.395854 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047310705", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.459978, 41.437374 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103687367978", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.453532, 41.442648 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047306425", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.451574, 41.438425 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491904", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.452787, 41.447686 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103687367978", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.453532, 41.442648 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718652274", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.458822, 41.458253 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718653128", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.456340, 41.454546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047489875", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.457969, 41.467537 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047489874", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.462019, 41.466395 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047043207", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.459339, 41.462701 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718651045", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.453935, 41.460584 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045907027", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.461319, 41.472543 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045907021", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.459090, 41.471118 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045907009", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.462255, 41.482894 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045907102", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.455882, 41.482852 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045907090", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.455536, 41.475658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040003", "POINTID": "1102653960066", "FULLNAME": "Lincoln Ridge Plaza Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.457816, 41.490313 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107062559693", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.459790, 41.512755 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270778104", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.451207, 41.535682 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047476696", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.457518, 41.549104 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047476704", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.459020, 41.543726 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047476606", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.459591, 41.551097 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436149", "POINTID": "1102653983550", "FULLNAME": "Highland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.451985, 41.553646 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045954046", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.460007, 41.563772 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052091986", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.454168, 41.578878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437525", "POINTID": "1102654014701", "FULLNAME": "Lake Country Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.457539, 41.588091 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010936283902", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.454382, 41.586070 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436074", "POINTID": "1102653983310", "FULLNAME": "Hessville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.461708, 41.595591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435053", "POINTID": "1102653980660", "FULLNAME": "Gibson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.461429, 41.605313 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433875", "POINTID": "1102653976748", "FULLNAME": "East Chicago", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.454753, 41.639228 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12645 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103733171339", "FULLNAME": "Cricklewood Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.441465, 37.950111 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045817797", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.447586, 37.958100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103734959281", "FULLNAME": "Partridge Place", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.440993, 37.970206 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103734948121", "FULLNAME": "Marble Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.445242, 37.967222 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735299646", "FULLNAME": "Clover Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.445239, 37.978424 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103734959281", "FULLNAME": "Partridge Place", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.440993, 37.970206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735303657", "FULLNAME": "Stahl Business Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.446156, 37.985405 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072787380", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.450807, 38.006447 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12630 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446750", "POINTID": "1102653997315", "FULLNAME": "Saint John", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.450013, 38.079208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12621 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110352423466", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.444914, 38.153295 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440335", "POINTID": "1102654017019", "FULLNAME": "Northview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.448069, 38.166153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434755", "POINTID": "1102653979820", "FULLNAME": "Francisco", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.445295, 38.332265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12585 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436677", "POINTID": "1102654014046", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.448353, 38.465878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430974", "POINTID": "1102654007558", "FULLNAME": "Bethlehem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.448629, 38.485878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12581 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440504", "POINTID": "1102654017136", "FULLNAME": "Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.448629, 38.505322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440504", "POINTID": "1102654017136", "FULLNAME": "Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.448629, 38.505322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113817710", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.450217, 38.653905 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444746", "POINTID": "1102654020910", "FULLNAME": "Threlkeld Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.450032, 38.762531 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444746", "POINTID": "1102654020910", "FULLNAME": "Threlkeld Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.450032, 38.762531 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440497", "POINTID": "1102654017130", "FULLNAME": "Ocheltree Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.448353, 38.823933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12542 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431894", "POINTID": "1102653970871", "FULLNAME": "Busseron", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.449187, 38.835598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440482", "POINTID": "1102653993725", "FULLNAME": "Oaktown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.441409, 38.871153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443794", "POINTID": "1102654020013", "FULLNAME": "South Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.442798, 39.028096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292435", "FULLNAME": "Sullivan County Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.448331, 39.114710 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439391", "POINTID": "1102654016196", "FULLNAME": "Moore Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.440577, 39.131983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433653", "POINTID": "1102654011398", "FULLNAME": "Douglas Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.447800, 39.195037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437272", "POINTID": "1102654014456", "FULLNAME": "Kester Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.443077, 39.306702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433810", "POINTID": "1102654011451", "FULLNAME": "Durham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.448860, 39.408972 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445815", "POINTID": "1102654002441", "FULLNAME": "West Terre Haute", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.450024, 39.465033 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438617", "POINTID": "1102653989472", "FULLNAME": "Marion Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.445856, 39.494756 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430484", "POINTID": "1102654006989", "FULLNAME": "Barbour Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.450855, 39.571144 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443014", "POINTID": "1102653997645", "FULLNAME": "Sandytown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.446132, 39.681979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443014", "POINTID": "1102653997645", "FULLNAME": "Sandytown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.446132, 39.681979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432142", "POINTID": "1102654009317", "FULLNAME": "Carmack Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.446127, 39.852535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444689", "POINTID": "1102654020870", "FULLNAME": "Thomas Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.440014, 39.895312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430468", "POINTID": "1102654006959", "FULLNAME": "Baltimore Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.446124, 40.166423 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442243", "POINTID": "1102654018669", "FULLNAME": "Roger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.445011, 40.166146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12321 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443340", "POINTID": "1102653998221", "FULLNAME": "Sheff", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.449187, 40.705591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12320 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443340", "POINTID": "1102653998221", "FULLNAME": "Sheff", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.449187, 40.705591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442633", "POINTID": "1102654019037", "FULLNAME": "Saint Josephs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.446620, 40.752256 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434302", "POINTID": "1102654011789", "FULLNAME": "Fairlawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.443565, 40.752308 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437256", "POINTID": "1102653985908", "FULLNAME": "Kentland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.445132, 40.770274 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430017", "POINTID": "1102653964129", "FULLNAME": "Ade", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.444745, 40.868367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434215", "POINTID": "1102653977856", "FULLNAME": "Enos", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.449195, 41.013920 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12272 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432895", "POINTID": "1102653973757", "FULLNAME": "Conrad", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.443364, 41.105032 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437545", "POINTID": "1102653986907", "FULLNAME": "Lake Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.448640, 41.137532 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12252 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270673231", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.446650, 41.274559 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12249 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270680216", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.448334, 41.297701 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096417941", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.442715, 41.334541 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096417432", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.440143, 41.334633 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11025367155776", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.451089, 41.363367 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432282", "POINTID": "1102653971933", "FULLNAME": "Cedar Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.441146, 41.364758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443115", "POINTID": "1102654019386", "FULLNAME": "Schubert Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.446980, 41.377813 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1101941177862", "FULLNAME": "Marsh Landing Pkwy", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.443973, 41.391670 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1101941177684", "FULLNAME": "W 128th St", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.441293, 41.384990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491308", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.449308, 41.396876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015484720612", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.444102, 41.414248 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476130265", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.442581, 41.418729 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047044486", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.440242, 41.435041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491906", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.446679, 41.451092 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103687402838", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.447650, 41.447739 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472645097", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.449418, 41.454100 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491907", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.445046, 41.452347 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437532", "POINTID": "1102653986830", "FULLNAME": "Lake Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.446151, 41.464202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047489860", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.442707, 41.468327 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045907097", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.448932, 41.481419 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045907750", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.444751, 41.480272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040005", "POINTID": "1102653961496", "FULLNAME": "Oak Ridge Center Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.447261, 41.485314 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045907751", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.443525, 41.486160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270756901", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.449973, 41.532537 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270759340", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.443458, 41.531218 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270778104", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.451207, 41.535682 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270782761", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.449973, 41.534824 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270799067", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.443911, 41.534453 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270735659", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.440328, 41.557346 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045954047", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.443981, 41.565600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02039993", "POINTID": "1102653959559", "FULLNAME": "Kennedy Industrial Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.445872, 41.572258 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976483", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.443337, 41.579161 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109093115063", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.440419, 41.583432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436794", "POINTID": "1102653984973", "FULLNAME": "Indiana Harbor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.445317, 41.640590 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110272089586", "FULLNAME": "Indiana Harbor", "MTFCC": "K1225" }, "geometry": { "type": "Point", "coordinates": [ -87.445247, 41.667504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12645 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103733039796", "FULLNAME": "Basin Street", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.436361, 37.950283 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103734959631", "FULLNAME": "Ashbury Park Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.439823, 37.969808 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103733608108", "FULLNAME": "Tippercanoe Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.436251, 37.963678 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735090288", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.436857, 37.976323 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103734959761", "FULLNAME": "East Lincoln Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.437176, 37.970887 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110352422613", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.429398, 37.972473 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444139", "POINTID": "1102653999495", "FULLNAME": "Stevenson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.433343, 38.016707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12632 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732819308", "FULLNAME": "Meadowlark Hill Road", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.439882, 38.060069 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12629 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434528", "POINTID": "1102653978908", "FULLNAME": "Fisherville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.433067, 38.085318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438045", "POINTID": "1102653953171", "FULLNAME": "Little Ditney Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.432509, 38.106234 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12622 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444441", "POINTID": "1102654020618", "FULLNAME": "Susett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.433901, 38.143375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12621 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446442", "POINTID": "1102654022399", "FULLNAME": "Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.439735, 38.158376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438939", "POINTID": "1102654015874", "FULLNAME": "Meade Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.431128, 38.359767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437352", "POINTID": "1102654014584", "FULLNAME": "Kirk Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.431407, 38.402266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12585 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445046", "POINTID": "1102654001159", "FULLNAME": "Union", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.434741, 38.465323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12565 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292323", "FULLNAME": "Marchino Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.433464, 38.637253 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439427", "POINTID": "1102654016225", "FULLNAME": "Morgan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.431130, 39.040597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430517", "POINTID": "1102653966723", "FULLNAME": "Barnhart Town", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.435578, 39.503923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430517", "POINTID": "1102653966723", "FULLNAME": "Barnhart Town", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.435578, 39.503923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441510", "POINTID": "1102653954079", "FULLNAME": "Pottsville Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.430023, 39.530590 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110132793413", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.433700, 39.627139 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437381", "POINTID": "1102653986320", "FULLNAME": "Klondyke", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.436688, 39.669479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441190", "POINTID": "1102654017873", "FULLNAME": "Pisgah Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.439185, 39.765313 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436326", "POINTID": "1102654013727", "FULLNAME": "Hollingsworth Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.432238, 39.816423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437143", "POINTID": "1102654014320", "FULLNAME": "Juliet Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.439738, 39.865591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444689", "POINTID": "1102654020870", "FULLNAME": "Thomas Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.440014, 39.895312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432441", "POINTID": "1102654009758", "FULLNAME": "Chenoweth Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.437790, 40.042257 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441034", "POINTID": "1102653994785", "FULLNAME": "Perrysville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.433346, 40.051425 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110132756832", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.435988, 40.055804 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444868", "POINTID": "1102654000907", "FULLNAME": "Tree Spring", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.433067, 40.096702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438370", "POINTID": "1102654015254", "FULLNAME": "Lower Mound Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.432512, 40.110591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12388 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442270", "POINTID": "1102653997002", "FULLNAME": "Romine Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.433067, 40.141978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12387 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440629", "POINTID": "1102653993983", "FULLNAME": "Olin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.430567, 40.149201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441842", "POINTID": "1102654018351", "FULLNAME": "Redwood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.433622, 40.280033 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444509", "POINTID": "1102654000140", "FULLNAME": "Sycamore Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.434456, 40.360033 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12326 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292028", "FULLNAME": "Rheude Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.438466, 40.660300 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12321 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446373", "POINTID": "1102654003419", "FULLNAME": "Yeagers Curve", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.439188, 40.698647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12307 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441249", "POINTID": "1102654017911", "FULLNAME": "Pleasant Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.436548, 40.820983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444386", "POINTID": "1102653999817", "FULLNAME": "Sumava Resorts", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.439196, 41.166421 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12251 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047477948", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.439453, 41.285819 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047477779", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.434623, 41.285839 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270669557", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.436701, 41.293918 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047477498", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.431758, 41.292177 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12249 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047477328", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.433925, 41.301501 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047477377", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.429585, 41.303955 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096417432", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.440143, 41.334633 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433117", "POINTID": "1102653974373", "FULLNAME": "Creston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.431423, 41.337811 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718716318", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.439190, 41.385054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1101941181398", "FULLNAME": "125th Place", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.439110, 41.391280 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1101941186493", "FULLNAME": "Lee Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.429494, 41.386233 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489732042", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.434306, 41.421702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047055026", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.439877, 41.431255 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047044486", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.440242, 41.435041 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729444179", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.435242, 41.435176 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096712230", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.439679, 41.450487 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976429", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.430492, 41.450915 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270801799", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.435076, 41.456544 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976428", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.430564, 41.452855 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976429", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.430492, 41.450915 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047044168", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.438965, 41.460086 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976430", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.433255, 41.462998 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432404", "POINTID": "1102654009716", "FULLNAME": "Chapel Lawn Memorial Gardens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.433373, 41.475035 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270801811", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.429596, 41.468266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045907755", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.437463, 41.483495 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045907794", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.438826, 41.487958 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045907897", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.431479, 41.491396 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047438031", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.436581, 41.495187 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270777104", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.433550, 41.514420 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045970126", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.438549, 41.523523 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270799028", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.433917, 41.519417 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047033385", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.430068, 41.541289 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047476694", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.438903, 41.549754 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047476695", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.439231, 41.544162 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270735659", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.440328, 41.557346 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047476694", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.438903, 41.549754 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02039990", "POINTID": "1102653958476", "FULLNAME": "Griffith Golf Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.430594, 41.563369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976485", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.436500, 41.572072 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976484", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.439829, 41.575485 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446843", "POINTID": "1102653959183", "FULLNAME": "Indiana Harbor Boat Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.437954, 41.654361 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047029008", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.426300, 37.964860 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110352422613", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.429398, 37.972473 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010887065172", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.428150, 37.972432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12631 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430289", "POINTID": "1102654006756", "FULLNAME": "Asbury Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.422234, 38.073374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12629 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103738758909", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.418744, 38.091313 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103738758909", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.418744, 38.091313 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441996", "POINTID": "1102653996489", "FULLNAME": "Ridgleville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.427517, 38.566711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12561 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434874", "POINTID": "1102654012259", "FULLNAME": "Fritchton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.424462, 38.671711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12560 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434873", "POINTID": "1102653980091", "FULLNAME": "Fritchton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.423073, 38.680323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12535 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452198", "POINTID": "1102653958518", "FULLNAME": "Griswold Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.427520, 38.894765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445268", "POINTID": "1102654021334", "FULLNAME": "Vester Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.425576, 38.964765 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437725", "POINTID": "1102654014920", "FULLNAME": "Ledgerwood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.422242, 38.964208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436678", "POINTID": "1102654014049", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.422242, 38.977264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441188", "POINTID": "1102654017870", "FULLNAME": "Pirtle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.428631, 39.005318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434799", "POINTID": "1102654012209", "FULLNAME": "Free Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.426410, 39.091429 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432337", "POINTID": "1102654009622", "FULLNAME": "Center Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.422521, 39.092541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103722066526", "FULLNAME": "W Lincoln Ave", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.423894, 39.096323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438905", "POINTID": "1102654015802", "FULLNAME": "McKinney Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.423634, 39.204206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292517", "FULLNAME": "Shure Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.419578, 39.260858 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12479 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452898", "POINTID": "1102654013917", "FULLNAME": "Hull Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.422799, 39.376702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452898", "POINTID": "1102654013917", "FULLNAME": "Hull Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.422799, 39.376702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449404", "POINTID": "1102653958989", "FULLNAME": "Honey Creek Square Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.419465, 39.426700 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444608", "POINTID": "1102654000387", "FULLNAME": "Taylorville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.423634, 39.462534 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441355", "POINTID": "1102654017974", "FULLNAME": "Pleasantview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.425576, 39.561145 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444612", "POINTID": "1102654000389", "FULLNAME": "Tecumseh", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.421689, 39.563091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110132793351", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.426549, 39.621067 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110132762010", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.421710, 39.618318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433146", "POINTID": "1102653974497", "FULLNAME": "Crompton Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.419187, 39.655868 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052127817", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.420423, 39.664480 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438980", "POINTID": "1102654015908", "FULLNAME": "Memorial Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.428628, 39.838923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443504", "POINTID": "1102654019810", "FULLNAME": "Silver Island Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.423347, 39.970033 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12388 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445169", "POINTID": "1102654021273", "FULLNAME": "Upper Mound Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.422789, 40.142257 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442980", "POINTID": "1102654019267", "FULLNAME": "Sand Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.419455, 40.162813 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12324 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433860", "POINTID": "1102654011485", "FULLNAME": "Earl Park Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.422521, 40.675591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292615", "FULLNAME": "Kentland Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.428215, 40.758729 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438358", "POINTID": "1102653988712", "FULLNAME": "Lowell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.420589, 41.291423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12249 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096350821", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.424878, 41.298910 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270796044", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.422845, 41.298267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270800032", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.422622, 41.303919 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109094641137", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.425377, 41.320357 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12243 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452397", "POINTID": "1102653962656", "FULLNAME": "South Shore Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.427257, 41.351424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047331386", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.419680, 41.367944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491354", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.418843, 41.416555 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976427", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.427292, 41.445682 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270801572", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.425664, 41.456244 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270801825", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.422971, 41.456472 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270801690", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.428403, 41.466251 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047489851", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.421810, 41.466938 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270806912", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.419825, 41.460148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270801667", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.427182, 41.468256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452340", "POINTID": "1102653959067", "FULLNAME": "Illiana Racetrack", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.423116, 41.477025 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102401299399", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.424178, 41.488350 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452917", "POINTID": "1102654017960", "FULLNAME": "Pleasant View Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.418650, 41.491980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270799150", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.423540, 41.510134 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435501", "POINTID": "1102653981811", "FULLNAME": "Griffith", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.423650, 41.528369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052025713", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.419060, 41.545968 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047032792", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.428150, 41.556153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02039987", "POINTID": "1102653955983", "FULLNAME": "Black Oak Picnic Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.423883, 41.572054 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445212", "POINTID": "1102654001364", "FULLNAME": "Van Loon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.422818, 41.568369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436860", "POINTID": "1102653985145", "FULLNAME": "Ivanhoe", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.424484, 41.597814 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431779", "POINTID": "1102653970525", "FULLNAME": "Buffington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.425873, 41.637258 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452949", "POINTID": "1102653956271", "FULLNAME": "Buffington Harbor Range Rear Light", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.421150, 41.638924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046592971", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.408125, 37.961555 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046592961", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.408015, 37.959728 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046592960", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.407838, 37.956685 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046592971", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.408125, 37.961555 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110353077083", "FULLNAME": "Newburgh Elementary Grade Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.415284, 37.974849 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735289630", "FULLNAME": "Hillside Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.413050, 37.973466 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735308325", "FULLNAME": "Camelot Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.410603, 37.992491 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046594274", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.408694, 37.999722 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430586", "POINTID": "1102653966962", "FULLNAME": "Baugh City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.412511, 38.041708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732815517", "FULLNAME": "Lake Haven Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.417414, 38.103248 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12618 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438324", "POINTID": "1102653953208", "FULLNAME": "Lost Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.412789, 38.182543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12617 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452101", "POINTID": "1102653997019", "FULLNAME": "Rosebud", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.412513, 38.194488 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12613 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431754", "POINTID": "1102653970300", "FULLNAME": "Buckskin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.411958, 38.228377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441953", "POINTID": "1102654018474", "FULLNAME": "Richardson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.414460, 38.406435 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440490", "POINTID": "1102653993761", "FULLNAME": "Oatsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.407516, 38.406989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434792", "POINTID": "1102654012198", "FULLNAME": "Frederick Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.416963, 38.496434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12581 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434792", "POINTID": "1102654012198", "FULLNAME": "Frederick Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.416963, 38.496434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12571 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439062", "POINTID": "1102654016029", "FULLNAME": "Meyer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.415018, 38.586711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431657", "POINTID": "1102653970117", "FULLNAME": "Bruceville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.415574, 38.759488 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432426", "POINTID": "1102654009738", "FULLNAME": "Charley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.410853, 38.830320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434197", "POINTID": "1102654011688", "FULLNAME": "Engle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.410298, 38.981430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431337", "POINTID": "1102654008065", "FULLNAME": "Boone Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.413632, 39.008094 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110118346326", "FULLNAME": "Sherman Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -87.410215, 39.098386 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015672785746", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.415413, 39.121985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432082", "POINTID": "1102653971298", "FULLNAME": "Campbell Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.408911, 39.142818 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452130", "POINTID": "1102653989670", "FULLNAME": "Massacre", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.407522, 39.155872 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438060", "POINTID": "1102654015067", "FULLNAME": "Little Flock Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.408632, 39.170315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445055", "POINTID": "1102654021179", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.407798, 39.273926 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292528", "FULLNAME": "Kester Fly Inn Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.412355, 39.277800 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015496500676", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.416845, 39.380792 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350980446", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.411523, 39.383601 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102642369172", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.408493, 39.378713 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048131491", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.407087, 39.384920 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12477 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350972889", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.409088, 39.386412 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102727788723", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.415791, 39.455487 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444648", "POINTID": "1102654000500", "FULLNAME": "Terre Haute", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.413911, 39.466700 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446293", "POINTID": "1102654022186", "FULLNAME": "Woodlawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.415461, 39.481647 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292485", "FULLNAME": "Union Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.407433, 39.486106 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452324", "POINTID": "1102653957997", "FULLNAME": "Fort Harrison Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.410021, 39.509757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443357", "POINTID": "1102653998252", "FULLNAME": "Shepardsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.417521, 39.600869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441928", "POINTID": "1102653996378", "FULLNAME": "Rhodes", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.413076, 39.609478 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444528", "POINTID": "1102654000184", "FULLNAME": "Syndicate", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.414187, 39.617258 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439975", "POINTID": "1102653992192", "FULLNAME": "Needmore", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.410298, 39.618923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434349", "POINTID": "1102653978351", "FULLNAME": "Fairview Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.417518, 39.680313 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435999", "POINTID": "1102654013389", "FULLNAME": "Helts Prairie Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.410850, 39.730867 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437037", "POINTID": "1102654014242", "FULLNAME": "Johnson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.410016, 39.833924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437037", "POINTID": "1102654014242", "FULLNAME": "Johnson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.410016, 39.833924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440148", "POINTID": "1102653993032", "FULLNAME": "Newport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.408627, 39.884201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430796", "POINTID": "1102654007365", "FULLNAME": "Bend Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.407790, 40.177812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438442", "POINTID": "1102654015362", "FULLNAME": "Lyons Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.409455, 40.206978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12375 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443283", "POINTID": "1102654019526", "FULLNAME": "Shankland Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.414455, 40.250309 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12323 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449649", "POINTID": "1102653976691", "FULLNAME": "Earl Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.411687, 40.682812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12296 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430671", "POINTID": "1102653967188", "FULLNAME": "Beaver City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.415582, 40.906979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12252 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270803200", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.410536, 41.274577 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270803212", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.407039, 41.273458 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12251 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270680389", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.411743, 41.282098 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270683959", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.408198, 41.278786 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270683853", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.416832, 41.291101 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450205", "POINTID": "1102654015238", "FULLNAME": "Lowell Memorial Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.407253, 41.292256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489671028", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.408967, 41.308602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12243 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270668792", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.413184, 41.348931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12242 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047480491", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.416158, 41.359670 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047480273", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.412706, 41.358758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047480492", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.415992, 41.361043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12240 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491228", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.412441, 41.372906 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491248", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.415906, 41.381518 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491246", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.412502, 41.380826 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491356", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.417465, 41.407877 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491357", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.412478, 41.408736 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491353", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.417384, 41.413023 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491355", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.411977, 41.412588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103687317096", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.416217, 41.454091 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270807043", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.410182, 41.453398 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047489847", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.417502, 41.466108 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047489845", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.409721, 41.466745 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270676461", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.416005, 41.475550 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045912262", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.413986, 41.480021 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045912264", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.410899, 41.481918 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045912263", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.409633, 41.478767 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270676461", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.416005, 41.475550 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439008", "POINTID": "1102654015945", "FULLNAME": "Memory Lane Memorial Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.411615, 41.475646 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045912523", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.407299, 41.492099 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045912271", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.407205, 41.487433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045912592", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.407438, 41.500466 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440043", "POINTID": "1102653992479", "FULLNAME": "New Elliott", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.417558, 41.493095 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045912523", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.407299, 41.492099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109073265899", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.417601, 41.505548 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045912592", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.407438, 41.500466 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270799095", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.410708, 41.521216 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045970133", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.411215, 41.540562 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02039995", "POINTID": "1102653962206", "FULLNAME": "Ridge Plaza Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.409206, 41.550035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292769", "FULLNAME": "Gary/chicago International Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.411856, 41.618729 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432569", "POINTID": "1102653972866", "FULLNAME": "Clarke Junction", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.416429, 41.630035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452950", "POINTID": "1102653956259", "FULLNAME": "Buffington Harbor Range Front Light", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.417537, 41.641145 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446842", "POINTID": "1102653959240", "FULLNAME": "Indiana Harbor East Bulkhead Light", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.410869, 41.669175 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12645 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452469", "POINTID": "1102653993016", "FULLNAME": "Newburgh", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.405285, 37.944485 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436209", "POINTID": "1102653983655", "FULLNAME": "Hillcrest Terrace", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.396396, 37.948929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046592959", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.406642, 37.957321 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104486315764", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.401948, 37.955763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735584956", "FULLNAME": "Poplar Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.403426, 37.968377 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735585659", "FULLNAME": "Maple Lane", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.399325, 37.967673 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735565580", "FULLNAME": "Kingston Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.397107, 37.986906 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103738907133", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.406819, 37.995178 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735549969", "FULLNAME": "Valleybrook Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.401878, 37.989735 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010887053937", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.406800, 38.002140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432226", "POINTID": "1102653971755", "FULLNAME": "Castle Garden", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.399175, 38.027543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439232", "POINTID": "1102653990729", "FULLNAME": "Millersburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.399732, 38.097819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432244", "POINTID": "1102654009509", "FULLNAME": "Catt Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.398072, 38.488656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442284", "POINTID": "1102654018677", "FULLNAME": "Root Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.396407, 38.691711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12534 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292457", "FULLNAME": "Ridgway Flying Service Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.400408, 38.906142 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432132", "POINTID": "1102653971533", "FULLNAME": "Carlisle", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.405601, 38.968297 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438782", "POINTID": "1102654015640", "FULLNAME": "McCammon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.396409, 39.008653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444366", "POINTID": "1102653999775", "FULLNAME": "Sullivan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.405853, 39.095318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110118239574", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.398517, 39.104645 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110118239585", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.398678, 39.103933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110118239563", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.398413, 39.106202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110118239544", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.406760, 39.114839 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12479 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103548844698", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.405124, 39.374759 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048131577", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.403911, 39.372099 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048128205", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.399896, 39.372936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048131491", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.407087, 39.384920 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048130840", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.403957, 39.407511 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443897", "POINTID": "1102653998998", "FULLNAME": "Southwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.401688, 39.403092 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452899", "POINTID": "1102653962196", "FULLNAME": "Rea Park Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.401967, 39.423091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292485", "FULLNAME": "Union Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.407433, 39.486106 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445001", "POINTID": "1102654001105", "FULLNAME": "Twelve Points", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.397799, 39.492256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443933", "POINTID": "1102653999092", "FULLNAME": "Spelterville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.398389, 39.527811 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452294", "POINTID": "1102653956823", "FULLNAME": "Clinton Gun Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.403630, 39.634758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292471", "FULLNAME": "Union Hospital Clinton", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.397847, 39.652642 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432671", "POINTID": "1102653973145", "FULLNAME": "Clinton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.398075, 39.656978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445424", "POINTID": "1102654021491", "FULLNAME": "Walnut Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.400296, 39.673368 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442109", "POINTID": "1102654018604", "FULLNAME": "Riverview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.397796, 39.667536 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445424", "POINTID": "1102654021491", "FULLNAME": "Walnut Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.400296, 39.673368 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292506", "FULLNAME": "Clinton Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.400132, 39.711968 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433565", "POINTID": "1102654011325", "FULLNAME": "Dinsmore Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.406406, 39.796148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437038", "POINTID": "1102654014246", "FULLNAME": "Johnson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.403624, 39.904202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438217", "POINTID": "1102653988417", "FULLNAME": "Lodi", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.405845, 39.950035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443517", "POINTID": "1102653998479", "FULLNAME": "Silverwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.403262, 39.955657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12290 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110347121749", "FULLNAME": "Cemetery", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.403758, 40.960339 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12252 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270803212", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.407039, 41.273458 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12251 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270680454", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.405357, 41.282112 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010883211885", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.401511, 41.281386 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450205", "POINTID": "1102654015238", "FULLNAME": "Lowell Memorial Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.407253, 41.292256 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270680365", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.399622, 41.294406 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270684007", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.401806, 41.291762 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270683979", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.401688, 41.288602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12249 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047477278", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.406191, 41.302247 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270687649", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.405456, 41.295784 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270680365", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.399622, 41.294406 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270687607", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.400451, 41.303252 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047477248", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.405338, 41.311221 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047335025", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.405593, 41.414141 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270807056", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.406679, 41.456476 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491998", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.400720, 41.457398 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052102452", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.396997, 41.454194 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019626965398", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.406556, 41.460826 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047489841", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.401294, 41.462275 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047492316", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.405808, 41.473709 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040009", "POINTID": "1102653963305", "FULLNAME": "Victoria Centre Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.396704, 41.473369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270779163", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.405188, 41.483069 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045912363", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.402055, 41.479273 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442262", "POINTID": "1102653996916", "FULLNAME": "Rolling Hill Estates", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.400593, 41.477258 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045912523", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.407299, 41.492099 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270779019", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.406414, 41.490138 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045912598", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.398890, 41.491152 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045912655", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.396208, 41.490845 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045912592", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.407438, 41.500466 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045912523", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.407299, 41.492099 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045912376", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.406738, 41.493772 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045912592", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.407438, 41.500466 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292741", "FULLNAME": "Griffith-Merrillville Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.399507, 41.519840 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434458", "POINTID": "1102654011924", "FULLNAME": "Fern Oak Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.406706, 41.530592 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442698", "POINTID": "1102654019081", "FULLNAME": "Saint Marys Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.396704, 41.547257 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047453559", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.404123, 41.584708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8428, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452289", "POINTID": "1102653956206", "FULLNAME": "Brunswick Community Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.398928, 41.603923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110352452152", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.395564, 37.942721 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12645 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436209", "POINTID": "1102653983655", "FULLNAME": "Hillcrest Terrace", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.396396, 37.948929 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110352422187", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.385608, 37.952899 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052094206", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.387472, 37.948151 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066710", "FULLNAME": "Bittersweet Cir", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.385179, 37.950695 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471655423", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.395484, 37.957122 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110352422187", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.385608, 37.952899 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432012", "POINTID": "1102653971217", "FULLNAME": "Camp Brosend", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.395841, 37.964486 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735588101", "FULLNAME": "Crestwood Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.389009, 37.968717 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735633432", "FULLNAME": "Lenn Lane", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.385243, 37.966275 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046594559", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.395360, 37.972764 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735628472", "FULLNAME": "Kathryn Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.387290, 37.971737 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735632122", "FULLNAME": "Ettamae Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.387319, 37.970123 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735592533", "FULLNAME": "Summitt Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.391855, 37.987633 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110352435541", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.395715, 37.986836 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735625379", "FULLNAME": "Chapel Hill Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.386855, 37.985097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735505800", "FULLNAME": "Talbert Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.396407, 37.991426 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735507377", "FULLNAME": "Alanton Park Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.394674, 37.994579 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735563674", "FULLNAME": "Bayshore Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.395310, 37.990386 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735617864", "FULLNAME": "Youngs Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.388411, 37.988563 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046592801", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.393609, 38.000675 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046592767", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.390685, 37.997672 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110352423242", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.394027, 38.006407 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110352421708", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.390728, 38.006504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12632 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110352453058", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.387215, 38.057925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12610 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438460", "POINTID": "1102653988932", "FULLNAME": "Mackey", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.391680, 38.252266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048460183", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.395535, 38.337579 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430498", "POINTID": "1102654007026", "FULLNAME": "Barnes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.387515, 38.392822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432715", "POINTID": "1102653973304", "FULLNAME": "Coats Spring", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.390573, 38.437544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442284", "POINTID": "1102654018677", "FULLNAME": "Root Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.396407, 38.691711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441590", "POINTID": "1102654018142", "FULLNAME": "Price Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.392517, 38.807544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437880", "POINTID": "1102654014977", "FULLNAME": "Light Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.393630, 38.851431 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435584", "POINTID": "1102654013033", "FULLNAME": "Haddon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.395830, 38.965301 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438782", "POINTID": "1102654015640", "FULLNAME": "McCammon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.396409, 39.008653 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441618", "POINTID": "1102654018172", "FULLNAME": "Providence Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.392520, 39.010595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441618", "POINTID": "1102654018172", "FULLNAME": "Providence Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.392520, 39.010595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449706", "POINTID": "1102653994579", "FULLNAME": "Paxton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.388430, 39.021276 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110118239597", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.395428, 39.103931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052076809", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.392976, 39.105113 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445402", "POINTID": "1102654021484", "FULLNAME": "Walls Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.386686, 39.118928 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443342", "POINTID": "1102653998227", "FULLNAME": "Shelburn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.393284, 39.178279 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433256", "POINTID": "1102653974811", "FULLNAME": "Curryville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.392520, 39.186984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444058", "POINTID": "1102653999353", "FULLNAME": "Standard", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.389186, 39.196428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445777", "POINTID": "1102654021705", "FULLNAME": "West Lawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.390299, 39.245871 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048127931", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.386721, 39.385303 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446284", "POINTID": "1102654003246", "FULLNAME": "Woodgate", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.385300, 39.384758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12477 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430096", "POINTID": "1102653964527", "FULLNAME": "Allendale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.395854, 39.391702 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048127931", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.386721, 39.385303 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103890103523", "FULLNAME": "Waycross Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.385230, 39.385604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104258918389", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.390629, 39.410826 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048125908", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.386844, 39.409983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048125914", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.388974, 39.414084 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435301", "POINTID": "1102654012721", "FULLNAME": "Grandview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.392799, 39.436145 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435301", "POINTID": "1102654012721", "FULLNAME": "Grandview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.392799, 39.436145 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015922164108", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.394178, 39.467783 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433735", "POINTID": "1102653976258", "FULLNAME": "Duane Yards", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.388633, 39.495033 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440899", "POINTID": "1102653994501", "FULLNAME": "Parkview", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.391965, 39.516424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350945007", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.395360, 39.544298 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444396", "POINTID": "1102653999872", "FULLNAME": "Summit Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.389183, 39.724481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452155", "POINTID": "1102653976726", "FULLNAME": "Early Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.385294, 39.763369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430118", "POINTID": "1102653964707", "FULLNAME": "Alta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.386684, 39.772259 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452156", "POINTID": "1102653958887", "FULLNAME": "Hillsdale Junction", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.385573, 39.778647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436218", "POINTID": "1102653983746", "FULLNAME": "Hillsdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.390294, 39.785870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436154", "POINTID": "1102654013532", "FULLNAME": "Highland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.395572, 39.798091 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436148", "POINTID": "1102653983538", "FULLNAME": "Highland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.395849, 39.794480 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439358", "POINTID": "1102653991252", "FULLNAME": "Montezuma Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.386684, 39.795037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292461", "FULLNAME": "Strip", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.392327, 39.840117 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446433", "POINTID": "1102654022387", "FULLNAME": "Zener Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.391125, 39.881980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436085", "POINTID": "1102654013446", "FULLNAME": "Hibbs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.387861, 39.979537 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432237", "POINTID": "1102654009492", "FULLNAME": "Cates Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.388344, 39.994759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015496554575", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.393062, 40.132833 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12388 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110131934402", "FULLNAME": "Covington Community High School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.395945, 40.144281 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110131716014", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.386630, 40.143407 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12387 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441577", "POINTID": "1102654018130", "FULLNAME": "Prescott Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.388344, 40.149757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440606", "POINTID": "1102653993960", "FULLNAME": "Old Town", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.386675, 40.258090 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12373 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445780", "POINTID": "1102654002369", "FULLNAME": "West Lebanon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.386678, 40.270034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437139", "POINTID": "1102653985696", "FULLNAME": "Judyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.395012, 40.358367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446686", "POINTID": "1102653993068", "FULLNAME": "Newton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.386131, 40.766703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12272 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346939849", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.388494, 41.110977 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12249 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270800042", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.390916, 41.297042 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270684052", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.389580, 41.296727 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433293", "POINTID": "1102653986777", "FULLNAME": "Lake Dalecarlia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.394757, 41.330867 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102629992950", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.386174, 41.400572 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270784621", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.385380, 41.395747 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108315648662", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.390085, 41.409824 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270784363", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.393909, 41.408838 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072891609", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.385525, 41.408867 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270795344", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.394304, 41.412355 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040004", "POINTID": "1102653961469", "FULLNAME": "Oak Knoll Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.388926, 41.416979 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108315648662", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.390085, 41.409824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270776381", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.392228, 41.423236 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270776365", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.391662, 41.427056 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047055051", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.387164, 41.439934 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047055054", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.386370, 41.436610 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052102270", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.394867, 41.450849 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270789627", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.388089, 41.450167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047492043", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.395519, 41.456922 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270789611", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.388121, 41.452441 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047489840", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.393633, 41.465529 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047291960", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.396417, 41.469585 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040007", "POINTID": "1102653961818", "FULLNAME": "Pine Island Plaza Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.395873, 41.473371 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096963026", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.390286, 41.475652 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047489836", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.386450, 41.468389 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045912362", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.395765, 41.482239 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270792267", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.388607, 41.482856 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096963026", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.390286, 41.475652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045912655", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.396208, 41.490845 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045912677", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.394537, 41.484257 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102411388856", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.390195, 41.485438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045912656", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.394111, 41.492014 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270759499", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.396299, 41.543138 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441995", "POINTID": "1102654018535", "FULLNAME": "Ridgelawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.390870, 41.546701 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449619", "POINTID": "1102653968196", "FULLNAME": "Black Oak", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.393649, 41.566146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449619", "POINTID": "1102653968196", "FULLNAME": "Black Oak", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.393649, 41.566146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02041232", "POINTID": "1102653963120", "FULLNAME": "Tri-City Plaza Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.391428, 41.600036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441148", "POINTID": "1102653995015", "FULLNAME": "Pine", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.394204, 41.624479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485973343", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.381689, 37.943576 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735772499", "FULLNAME": "Stoneneck Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.375509, 37.942220 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12645 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066710", "FULLNAME": "Bittersweet Cir", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.385179, 37.950695 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735770414", "FULLNAME": "Pleasant Valley Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.375467, 37.949331 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735645277", "FULLNAME": "Savannah Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.379916, 37.961680 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432211", "POINTID": "1102654009459", "FULLNAME": "Casey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.381952, 37.956708 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735647021", "FULLNAME": "Cedar Lane", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.374214, 37.953775 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735633432", "FULLNAME": "Lenn Lane", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.385243, 37.966275 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010952130852", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.381625, 37.963816 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735642147", "FULLNAME": "Augusta Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.374796, 37.964585 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735633804", "FULLNAME": "Meadowbrook Lane", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.384023, 37.972952 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046592619", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.380828, 37.995641 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440858", "POINTID": "1102653994403", "FULLNAME": "Paradise", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.379452, 37.995596 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104486079344", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.380539, 38.004213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110352437319", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.376907, 38.010169 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732822585", "FULLNAME": "Cresent Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.376899, 38.015477 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12633 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292514", "FULLNAME": "Raceway Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.380123, 38.048640 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12607 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443767", "POINTID": "1102653998743", "FULLNAME": "Somerville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.378055, 38.276378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292192", "FULLNAME": "Bottoms Brothers Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.380681, 38.284198 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437245", "POINTID": "1102653953059", "FULLNAME": "Kennedy Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.379737, 38.294210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440428", "POINTID": "1102653993621", "FULLNAME": "Oak Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.374455, 38.304486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12581 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444147", "POINTID": "1102654020360", "FULLNAME": "Stewart Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.383350, 38.497267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12569 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438819", "POINTID": "1102654015684", "FULLNAME": "McCoy Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.381129, 38.601155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443744", "POINTID": "1102654019990", "FULLNAME": "Snyder Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.378353, 39.002819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441649", "POINTID": "1102654018188", "FULLNAME": "Purcell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.377797, 39.028096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292424", "FULLNAME": "Drake Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.380689, 39.131138 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433928", "POINTID": "1102653976912", "FULLNAME": "East Shelburn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.379742, 39.174482 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433970", "POINTID": "1102654011521", "FULLNAME": "Ebenezer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.383631, 39.214205 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449655", "POINTID": "1102653978543", "FULLNAME": "Farmersburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.381939, 39.248662 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441145", "POINTID": "1102653994987", "FULLNAME": "Pimento", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.379187, 39.309481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446419", "POINTID": "1102654003575", "FULLNAME": "Youngstown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.382242, 39.362257 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12479 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048128384", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.378229, 39.376561 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446284", "POINTID": "1102654003246", "FULLNAME": "Woodgate", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.385300, 39.384758 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048126862", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.380957, 39.381302 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048126848", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.378063, 39.380438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12477 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103890103523", "FULLNAME": "Waycross Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.385230, 39.385604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350972362", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.385460, 39.406613 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048125924", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.382902, 39.408789 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443982", "POINTID": "1102653999181", "FULLNAME": "Spring Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.377242, 39.412536 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259536868", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.383918, 39.428625 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052114944", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.384924, 39.441469 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052115805", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.376510, 39.441651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015922164956", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.376842, 39.468872 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015922164975", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.374077, 39.466286 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444649", "POINTID": "1102654000519", "FULLNAME": "Terre Town", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.375300, 39.517535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433478", "POINTID": "1102654011253", "FULLNAME": "Denny Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.374466, 39.542534 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442308", "POINTID": "1102654018696", "FULLNAME": "Roselawn Memorial Pk", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.376411, 39.554757 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292509", "FULLNAME": "Sky King Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.374820, 39.548687 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442308", "POINTID": "1102654018696", "FULLNAME": "Roselawn Memorial Pk", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.376411, 39.554757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436569", "POINTID": "1102653984463", "FULLNAME": "Hudnut", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.376963, 39.659479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452155", "POINTID": "1102653976726", "FULLNAME": "Early Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.385294, 39.763369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446162", "POINTID": "1102654022064", "FULLNAME": "Wimsett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.381126, 39.861424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436532", "POINTID": "1102653984371", "FULLNAME": "Howard", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.375528, 39.916134 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432703", "POINTID": "1102653973265", "FULLNAME": "Coal Creek", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.380568, 40.036425 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439578", "POINTID": "1102654016402", "FULLNAME": "Mount Hope Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.385010, 40.131147 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12388 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110131717179", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.379197, 40.139052 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445781", "POINTID": "1102654021713", "FULLNAME": "West Lebanon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.378066, 40.256145 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431372", "POINTID": "1102653968966", "FULLNAME": "Boswell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.378347, 40.521144 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471603049", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.376502, 41.328112 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12243 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047288328", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.382754, 41.344912 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450210", "POINTID": "1102653961741", "FULLNAME": "Pheasant Valley Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.383368, 41.366702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105598352193", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.381080, 41.385130 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105598350779", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.382915, 41.383329 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015482128898", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.381003, 41.379817 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105598352193", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.381080, 41.385130 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11025367156197", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.378087, 41.387404 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102629993052", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.385383, 41.399566 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270784621", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.385380, 41.395747 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11025367156198", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.383057, 41.400137 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270783506", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.384975, 41.394642 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270783502", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.379511, 41.396097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102630098504", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.383285, 41.407026 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270757847", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.379340, 41.408959 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270795443", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.376692, 41.405392 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270774534", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.375791, 41.413938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270783466", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.383677, 41.424045 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270783714", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.380788, 41.421694 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270764333", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.375727, 41.423088 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270774745", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.382835, 41.432333 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270774716", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.378621, 41.431432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270692932", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.383524, 41.439668 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270789602", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.384964, 41.450421 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047057960", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.380587, 41.443251 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270776252", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.382081, 41.456068 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437945", "POINTID": "1102653988080", "FULLNAME": "Lincoln Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.381982, 41.474201 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270650159", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.377797, 41.471912 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270752954", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.383650, 41.483469 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270650147", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.375955, 41.475600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270661862", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.381815, 41.484281 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102391581042", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.374611, 41.500050 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102391584882", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.375815, 41.505892 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096916152", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.374713, 41.501698 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442317", "POINTID": "1102654018698", "FULLNAME": "Ross Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.383647, 41.527815 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442314", "POINTID": "1102653997070", "FULLNAME": "Ross", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.374758, 41.526702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02039988", "POINTID": "1102653956479", "FULLNAME": "Calumet Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.384760, 41.551424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12647 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445220", "POINTID": "1102654001392", "FULLNAME": "Vanada", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.364419, 37.932301 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735772191", "FULLNAME": "Bayhill Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.373541, 37.942321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12645 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735647037", "FULLNAME": "Holly Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.373924, 37.951884 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735770679", "FULLNAME": "Hensley Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.372634, 37.944496 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735646640", "FULLNAME": "Woodlawn Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.364622, 37.951480 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735645507", "FULLNAME": "Jamestown Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.373640, 37.960510 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735647021", "FULLNAME": "Cedar Lane", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.374214, 37.953775 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442423", "POINTID": "1102653997272", "FULLNAME": "Rustic Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.367506, 37.955598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110352421860", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.372527, 37.962549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046592599", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.366980, 37.986642 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046592584", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.370293, 37.992554 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046592576", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.365017, 37.994231 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732832010", "FULLNAME": "Sagewood Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.373238, 38.002334 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452394", "POINTID": "1102653962316", "FULLNAME": "Rolling Hills Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.374453, 38.009486 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010887054493", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.365958, 38.013144 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732831854", "FULLNAME": "Mill Creek Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.370035, 38.004771 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732822586", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.373860, 38.015866 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010887055555", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.363410, 38.019328 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732828546", "FULLNAME": "Elliot Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.370746, 38.035524 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732830029", "FULLNAME": "Grape Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.369842, 38.031819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432395", "POINTID": "1102653972343", "FULLNAME": "Chandler", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.368064, 38.041708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12624 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431033", "POINTID": "1102653950932", "FULLNAME": "Big Ditney Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.366326, 38.132770 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439399", "POINTID": "1102653953558", "FULLNAME": "Moore Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.369179, 38.285044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440428", "POINTID": "1102653993621", "FULLNAME": "Oak Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.374455, 38.304486 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435542", "POINTID": "1102653981880", "FULLNAME": "Gudgel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.364459, 38.304766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430687", "POINTID": "1102654007228", "FULLNAME": "Beck Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.368627, 38.420045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446125", "POINTID": "1102654022047", "FULLNAME": "Wilson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.364738, 38.430322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12586 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441443", "POINTID": "1102654018026", "FULLNAME": "Poplar Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.366127, 38.461711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430486", "POINTID": "1102653950773", "FULLNAME": "Barefoot Nation Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.365296, 38.773655 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445371", "POINTID": "1102654021448", "FULLNAME": "Walker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.366406, 38.860043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443936", "POINTID": "1102654020127", "FULLNAME": "Spencer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.366964, 39.041430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431558", "POINTID": "1102654008504", "FULLNAME": "Brodie Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.367795, 39.074206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430450", "POINTID": "1102653966410", "FULLNAME": "Baldridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.372243, 39.223094 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350983460", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.368640, 39.340517 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350971586", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.364821, 39.349830 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292498", "FULLNAME": "Aero Plaines Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.372079, 39.352244 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110351001093", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.367535, 39.355233 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052113690", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.370901, 39.449381 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350961371", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.366417, 39.447026 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072907498", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.373047, 39.456624 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015922164975", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.374077, 39.466286 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103670404031", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.363761, 39.464913 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441578", "POINTID": "1102653995682", "FULLNAME": "Preston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.371966, 39.506702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433478", "POINTID": "1102654011253", "FULLNAME": "Denny Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.374466, 39.542534 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109097357105", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.365679, 39.547084 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015496770905", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.365119, 39.563086 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316612666", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.363729, 39.563246 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446661", "POINTID": "1102654002212", "FULLNAME": "West Atherton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.370853, 39.608924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440366", "POINTID": "1102653993586", "FULLNAME": "Numa", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.370298, 39.630868 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438424", "POINTID": "1102653988827", "FULLNAME": "Lyford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.370853, 39.650036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439357", "POINTID": "1102653991246", "FULLNAME": "Montezuma", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.370842, 39.792885 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440463", "POINTID": "1102654017102", "FULLNAME": "Oakland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.372763, 39.803092 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443417", "POINTID": "1102654019704", "FULLNAME": "Shirk Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.371400, 39.948647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431373", "POINTID": "1102654008119", "FULLNAME": "Boswell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.370014, 40.520035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12327 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435358", "POINTID": "1102653981397", "FULLNAME": "Gravel Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.370016, 40.650035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12319 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433442", "POINTID": "1102654011201", "FULLNAME": "Dehner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.363351, 40.721980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441021", "POINTID": "1102653994726", "FULLNAME": "Perkins", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.363077, 40.765037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12291 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437243", "POINTID": "1102654014428", "FULLNAME": "Kennedy Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.371135, 40.951701 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452948", "POINTID": "1102653963855", "FULLNAME": "Youche Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.370590, 41.378368 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015482131859", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.374466, 41.385760 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102629987912", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.370743, 41.388873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047287286", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.367455, 41.401636 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450293", "POINTID": "1102653959806", "FULLNAME": "Lake County Fairground", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.369480, 41.401425 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292776", "FULLNAME": "St Anthony Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.365440, 41.393512 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108315746629", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.363093, 41.397932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270783551", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.369048, 41.406658 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047287286", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.367455, 41.401636 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450293", "POINTID": "1102653959806", "FULLNAME": "Lake County Fairground", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.369480, 41.401425 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449644", "POINTID": "1102653974643", "FULLNAME": "Crown Pt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.365312, 41.416979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096401627", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.370338, 41.419089 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270756235", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.372167, 41.429688 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047492133", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.371062, 41.438116 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450279", "POINTID": "1102653959817", "FULLNAME": "Lake County Government Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.369204, 41.447813 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450281", "POINTID": "1102653959831", "FULLNAME": "Lake County Juvenile Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.371424, 41.451146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270789647", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.373908, 41.464172 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270783848", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.367774, 41.465573 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270789957", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.373522, 41.474163 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270783804", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.369249, 41.469810 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270783830", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.367803, 41.468600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436727", "POINTID": "1102653984828", "FULLNAME": "Independence Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.367259, 41.476147 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270654093", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.371027, 41.485213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102391581457", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.371768, 41.499745 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452923", "POINTID": "1102653959444", "FULLNAME": "Innsbrook Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.363657, 41.497796 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102391583009", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.371741, 41.504427 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438334", "POINTID": "1102653988656", "FULLNAME": "Lottaville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.364786, 41.503367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444804", "POINTID": "1102654000757", "FULLNAME": "Tolleston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.366135, 41.593086 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019665352247", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.353180, 37.944068 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019665352246", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.352153, 37.944013 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12645 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735646724", "FULLNAME": "Inverness Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.361951, 37.949803 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019665352248", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.353885, 37.944902 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019665352247", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.353180, 37.944068 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485973722", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.360253, 37.955851 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735643803", "FULLNAME": "Bryanna Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.357692, 37.967924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010887061809", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.356777, 37.986809 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944422142", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.358539, 37.991333 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944422141", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.356493, 37.991318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732833036", "FULLNAME": "Pebble Beach Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.356793, 38.002730 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471650774", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.362069, 38.007861 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732833330", "FULLNAME": "Cypress Pointe Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.355385, 38.007944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010887055555", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.363410, 38.019328 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110352452687", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.358333, 38.042029 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110352436743", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.356651, 38.042379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433190", "POINTID": "1102654010933", "FULLNAME": "Crossroad Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.357785, 38.106709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12625 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452124", "POINTID": "1102653985293", "FULLNAME": "Jarretts", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.358620, 38.120876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444060", "POINTID": "1102653999359", "FULLNAME": "Stanley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.355009, 38.164487 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12610 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444843", "POINTID": "1102654020997", "FULLNAME": "Townsley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.356678, 38.253379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12607 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446148", "POINTID": "1102653955428", "FULLNAME": "Wilson Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.357429, 38.273571 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452375", "POINTID": "1102653961517", "FULLNAME": "Oakland City Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.354671, 38.332439 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432394", "POINTID": "1102653972354", "FULLNAME": "Chandler", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.352236, 38.421434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12575 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446091", "POINTID": "1102654002957", "FULLNAME": "Willis", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.357238, 38.553378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12568 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439342", "POINTID": "1102653991138", "FULLNAME": "Monroe City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.354459, 38.615322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435763", "POINTID": "1102654013157", "FULLNAME": "Harper Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.358075, 38.959763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435115", "POINTID": "1102653980895", "FULLNAME": "Glendora", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.362796, 39.128096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436890", "POINTID": "1102653985160", "FULLNAME": "Jackson Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.361962, 39.168371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446033", "POINTID": "1102654002915", "FULLNAME": "Wilfred", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.352520, 39.186706 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350971611", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.363415, 39.349749 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443017", "POINTID": "1102653954472", "FULLNAME": "Sanford Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.362243, 39.343093 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12479 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443668", "POINTID": "1102654019935", "FULLNAME": "Smith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.359743, 39.368926 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048130192", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.359875, 39.399079 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048130260", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.358853, 39.397369 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048130191", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.356396, 39.397944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048130236", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.354062, 39.404953 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102642268277", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.359494, 39.442476 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072915162", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.356066, 39.442722 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471755360", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.362587, 39.452320 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015497305777", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.356173, 39.445274 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433466", "POINTID": "1102653975576", "FULLNAME": "Deming Woods", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.357799, 39.460035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103670405155", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.362444, 39.464822 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452035", "POINTID": "1102653975559", "FULLNAME": "Deming Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.354465, 39.466145 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015922166918", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.361363, 39.472823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442248", "POINTID": "1102654018670", "FULLNAME": "Rogers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.352520, 39.496422 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471767903", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.360465, 39.519585 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452219", "POINTID": "1102653957762", "FULLNAME": "Elsworth Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.362243, 39.529202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350951546", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.359320, 39.548315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316612665", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.362667, 39.563049 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316612664", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.361363, 39.563835 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446272", "POINTID": "1102654022156", "FULLNAME": "Wood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.358075, 39.587257 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430321", "POINTID": "1102653965884", "FULLNAME": "Atherton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.361964, 39.608091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431378", "POINTID": "1102654008134", "FULLNAME": "Bound Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.355296, 39.636425 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430255", "POINTID": "1102654006703", "FULLNAME": "Armiesburg Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.355573, 39.768647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434221", "POINTID": "1102654011705", "FULLNAME": "Ephlin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.362790, 39.914758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431557", "POINTID": "1102654008498", "FULLNAME": "Brockway Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.356401, 39.930869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431533", "POINTID": "1102653969636", "FULLNAME": "Brisco", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.358346, 40.411145 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443672", "POINTID": "1102654019946", "FULLNAME": "Smith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.358901, 40.481977 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12319 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433442", "POINTID": "1102654011201", "FULLNAME": "Dehner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.363351, 40.721980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441021", "POINTID": "1102653994726", "FULLNAME": "Perkins", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.363077, 40.765037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12302 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346932166", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.358072, 40.861454 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346930684", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.357147, 40.863317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346937917", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.359030, 41.131508 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440682", "POINTID": "1102653994071", "FULLNAME": "Orchard Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.353641, 41.289757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12249 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109094664702", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.357925, 41.302682 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109094664702", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.357925, 41.302682 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096352072", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.352678, 41.318290 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12240 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270756745", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.357450, 41.375124 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105598498400", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.362329, 41.382872 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476478543", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.361052, 41.379874 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105598498406", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.355597, 41.383146 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270795369", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.353258, 41.379765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443251", "POINTID": "1102653998104", "FULLNAME": "Shady Lawn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.354789, 41.393041 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270790737", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.352783, 41.384980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108315746629", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.363093, 41.397932 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108315746626", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.357882, 41.395930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047287288", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.362552, 41.406527 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452930", "POINTID": "1102654015447", "FULLNAME": "Maplewood Memorial Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.357257, 41.408645 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047287290", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.357753, 41.404135 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110272089591", "FULLNAME": "St Mary's Church Convent", "MTFCC": "K1239" }, "geometry": { "type": "Point", "coordinates": [ -87.362908, 41.415102 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270795549", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.352442, 41.431198 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270753025", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.360422, 41.442738 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270753019", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.362774, 41.442616 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270779316", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.361656, 41.447644 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270753019", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.362774, 41.442616 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270783941", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.352381, 41.442568 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270756849", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.357488, 41.486997 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270654344", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.352172, 41.488848 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449467", "POINTID": "1102653963320", "FULLNAME": "Village Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.358349, 41.553367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444805", "POINTID": "1102654020972", "FULLNAME": "Tolleston Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.355186, 41.582616 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445365", "POINTID": "1102654021433", "FULLNAME": "Waldheim Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.352260, 41.582535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444805", "POINTID": "1102654020972", "FULLNAME": "Tolleston Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.355186, 41.582616 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445365", "POINTID": "1102654021433", "FULLNAME": "Waldheim Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.352260, 41.582535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019665352246", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.352153, 37.944013 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732833367", "FULLNAME": "Medinah Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.346359, 37.998522 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732833609", "FULLNAME": "Jenner Road", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.344626, 38.012274 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732833579", "FULLNAME": "White Tail Ridge Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.350144, 38.016092 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732833570", "FULLNAME": "White Tail Ridge Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.346244, 38.016025 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434106", "POINTID": "1102654011627", "FULLNAME": "Ellis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.343342, 38.028931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12633 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432308", "POINTID": "1102653972075", "FULLNAME": "Center", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.343057, 38.048651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292504", "FULLNAME": "Squaw Creek Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.349452, 38.093097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435368", "POINTID": "1102653981441", "FULLNAME": "Gray Junction", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.344734, 38.326434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440470", "POINTID": "1102653993687", "FULLNAME": "Oakland City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.344981, 38.338724 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432394", "POINTID": "1102653972354", "FULLNAME": "Chandler", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.352236, 38.421434 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438873", "POINTID": "1102654015722", "FULLNAME": "McGillem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.345571, 38.427547 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442387", "POINTID": "1102653997191", "FULLNAME": "Rumble", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.342792, 38.435880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12587 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431169", "POINTID": "1102654007752", "FULLNAME": "Blaize Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.345015, 38.451156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431405", "POINTID": "1102653969084", "FULLNAME": "Bowman", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.346960, 38.496434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12581 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431405", "POINTID": "1102653969084", "FULLNAME": "Bowman", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.346960, 38.496434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12568 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434548", "POINTID": "1102653978949", "FULLNAME": "Five Points", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.348068, 38.610319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436760", "POINTID": "1102653984850", "FULLNAME": "Indian Creek Settlement", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.345573, 38.729211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430803", "POINTID": "1102654007374", "FULLNAME": "Benefiel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.345294, 38.960043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443574", "POINTID": "1102654019873", "FULLNAME": "Skidmore Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.343629, 38.980598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437597", "POINTID": "1102654014775", "FULLNAME": "Land Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.350297, 38.993097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445447", "POINTID": "1102654021508", "FULLNAME": "Walters Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.341684, 39.020319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431601", "POINTID": "1102654008562", "FULLNAME": "Brown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.346963, 39.316981 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048130235", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.350407, 39.402891 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072920588", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.344978, 39.402518 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350984657", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.346528, 39.449669 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016955127814", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.344905, 39.461321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436168", "POINTID": "1102654013560", "FULLNAME": "Highland Lawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.347797, 39.476423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432812", "POINTID": "1102654010323", "FULLNAME": "Coltrin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.346072, 39.486151 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259524744", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.348821, 39.504167 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072905252", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.346445, 39.503078 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259524744", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.348821, 39.504167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052115978", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.349516, 39.514669 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438626", "POINTID": "1102653989522", "FULLNAME": "Markles", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.351965, 39.526980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440746", "POINTID": "1102653994278", "FULLNAME": "Otter Creek Junction", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.348355, 39.546424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440746", "POINTID": "1102653994278", "FULLNAME": "Otter Creek Junction", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.348355, 39.546424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444142", "POINTID": "1102654020357", "FULLNAME": "Steveson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.351131, 39.571423 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434251", "POINTID": "1102654011735", "FULLNAME": "Evans Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.348631, 39.564480 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110342684153", "FULLNAME": "Daily Chapel Christain Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -87.346641, 39.681397 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436251", "POINTID": "1102654013635", "FULLNAME": "Hixon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.350015, 39.736148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449613", "POINTID": "1102653965571", "FULLNAME": "Armiesburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.351128, 39.763369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446658", "POINTID": "1102654002385", "FULLNAME": "West Melcher", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.347239, 39.788924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435849", "POINTID": "1102654013231", "FULLNAME": "Harvey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.341124, 39.881960 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430422", "POINTID": "1102654006901", "FULLNAME": "Baker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.346399, 39.974758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12377 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292489", "FULLNAME": "Gary Johnson Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.349554, 40.235261 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12367 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435176", "POINTID": "1102654012613", "FULLNAME": "Goodwine Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.345286, 40.316700 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432124", "POINTID": "1102653971471", "FULLNAME": "Carbondale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.347789, 40.360035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12358 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445217", "POINTID": "1102654021298", "FULLNAME": "Van Reed Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.351123, 40.391700 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431534", "POINTID": "1102654008446", "FULLNAME": "Brisco Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.350289, 40.414201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12344 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441020", "POINTID": "1102654017764", "FULLNAME": "Perigo Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.345571, 40.509201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432433", "POINTID": "1102653972502", "FULLNAME": "Chase", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.341958, 40.519478 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346937904", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.351002, 41.142300 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047331301", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.343728, 41.183020 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440683", "POINTID": "1102654017484", "FULLNAME": "Orchard Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.344506, 41.286695 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096352111", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.347349, 41.317970 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270790748", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.350782, 41.382480 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270795379", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.344356, 41.382872 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270781590", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.346287, 41.377529 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270790725", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.351117, 41.386376 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270781536", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.343886, 41.391757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108315746702", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.351359, 41.399220 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270751309", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.341963, 41.399646 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270751068", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.343202, 41.394447 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015482121127", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.342044, 41.393137 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270790537", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.348095, 41.407318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047478551", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.341834, 41.413570 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270795587", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.348752, 41.425252 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270795549", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.352442, 41.431198 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479612", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.345927, 41.431587 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270783941", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.352381, 41.442568 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270784009", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.350479, 41.440867 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270775064", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.342548, 41.435809 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270781325", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.352386, 41.445304 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270779440", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.351490, 41.448784 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270757835", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.342821, 41.449041 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270783941", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.352381, 41.442568 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047489780", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.350138, 41.457063 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102390355325", "FULLNAME": "W 83rd Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.348918, 41.466568 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504111881", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.343956, 41.463372 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270757171", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.343953, 41.460160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270654478", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.351056, 41.483288 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102390373353", "FULLNAME": "Polk Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.349141, 41.479089 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047028996", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.342331, 41.482440 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045923769", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.349728, 41.491496 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450259", "POINTID": "1102653963160", "FULLNAME": "Turkey Creek Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.351426, 41.497814 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045923775", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.346488, 41.495741 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452406", "POINTID": "1102653963131", "FULLNAME": "Turkey Creek Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.345868, 41.502814 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010866124190", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.350093, 41.510670 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440435", "POINTID": "1102654017074", "FULLNAME": "Oak Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.348926, 41.538647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02039996", "POINTID": "1102653962641", "FULLNAME": "South Gleason Park Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.345868, 41.558092 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445365", "POINTID": "1102654021433", "FULLNAME": "Waldheim Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.352260, 41.582535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445365", "POINTID": "1102654021433", "FULLNAME": "Waldheim Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.352260, 41.582535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434979", "POINTID": "1102653980330", "FULLNAME": "Gary", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.346426, 41.593369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292751", "FULLNAME": "Northwest Family Hosp Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.348926, 41.599757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735639316", "FULLNAME": "Sherry Lee Lane", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.335220, 37.973521 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732833732", "FULLNAME": "Twin Lakes Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.336703, 38.014250 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732834028", "FULLNAME": "Morning Dove Lane", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.334531, 38.034149 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12613 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434005", "POINTID": "1102654011542", "FULLNAME": "Eden Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.339176, 38.224211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12612 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437303", "POINTID": "1102654014523", "FULLNAME": "Kilpatrick Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.335566, 38.230046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439361", "POINTID": "1102654016174", "FULLNAME": "Montgomery Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.341400, 38.325601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433632", "POINTID": "1102653976049", "FULLNAME": "Dongola", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.340289, 38.371990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438347", "POINTID": "1102654015209", "FULLNAME": "Loveless Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.333624, 38.421156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445653", "POINTID": "1102654021636", "FULLNAME": "Weist Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.338347, 38.493380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12578 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446741", "POINTID": "1102653966856", "FULLNAME": "Bartons Location", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.339461, 38.529212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452285", "POINTID": "1102653955970", "FULLNAME": "Bicknell Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.332237, 38.758377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12542 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432387", "POINTID": "1102654009671", "FULLNAME": "Chambers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.340574, 38.831432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444885", "POINTID": "1102654021023", "FULLNAME": "Trimble Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.330295, 38.976987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436512", "POINTID": "1102654013840", "FULLNAME": "Houck Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.332795, 39.073930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430261", "POINTID": "1102654006713", "FULLNAME": "Armstrong Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.338074, 39.317259 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446370", "POINTID": "1102653955516", "FULLNAME": "Yaw Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.335298, 39.315036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430261", "POINTID": "1102654006713", "FULLNAME": "Armstrong Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.338074, 39.317259 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439262", "POINTID": "1102654016103", "FULLNAME": "Miner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.336408, 39.368370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12479 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439262", "POINTID": "1102654016103", "FULLNAME": "Miner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.336408, 39.368370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436263", "POINTID": "1102654013673", "FULLNAME": "Hobmeyer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.336687, 39.445313 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350961118", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.341467, 39.457270 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350977175", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.338921, 39.457003 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350962790", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.338393, 39.469471 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350962685", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.333935, 39.469431 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311959704", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.333554, 39.477833 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452380", "POINTID": "1102653961757", "FULLNAME": "Phoenix Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.340853, 39.478924 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311959703", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.335802, 39.482108 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350983904", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.335786, 39.501723 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072903378", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.336540, 39.514009 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015496802677", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.334059, 39.514708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441084", "POINTID": "1102654017824", "FULLNAME": "Phillips Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.337798, 39.550313 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350951737", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.332519, 39.560328 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439653", "POINTID": "1102654016475", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.336684, 39.667536 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438954", "POINTID": "1102653990096", "FULLNAME": "Mecca", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.330572, 39.727257 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437382", "POINTID": "1102653986331", "FULLNAME": "Klondyke", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.339182, 39.791148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445818", "POINTID": "1102654002443", "FULLNAME": "West Union", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.336679, 39.843647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432245", "POINTID": "1102654009515", "FULLNAME": "Causey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.334734, 39.862260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435849", "POINTID": "1102654013231", "FULLNAME": "Harvey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.341124, 39.881960 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432236", "POINTID": "1102653971811", "FULLNAME": "Cates", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.337787, 39.996703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437684", "POINTID": "1102653987456", "FULLNAME": "Layton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.333342, 40.128091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434710", "POINTID": "1102653979631", "FULLNAME": "Fountain", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.335287, 40.222257 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440799", "POINTID": "1102654017570", "FULLNAME": "Owens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.338063, 40.287256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431521", "POINTID": "1102654008429", "FULLNAME": "Brier Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.330287, 40.360591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346936528", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.335818, 41.153955 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346936528", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.335818, 41.153955 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444661", "POINTID": "1102654000549", "FULLNAME": "Thayer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.333640, 41.173369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270795395", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.341427, 41.377229 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047287394", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.332141, 41.383190 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015482121072", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.338594, 41.391652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104257308844", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.340123, 41.397588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047478545", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.340134, 41.408742 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047019285", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.330808, 41.417184 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047287268", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.336939, 41.421766 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047287267", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.332758, 41.423781 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450273", "POINTID": "1102653962730", "FULLNAME": "Southlake Speedway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.337291, 41.428395 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270792093", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.337929, 41.466160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452265", "POINTID": "1102653956169", "FULLNAME": "Broadway Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.337229, 41.473649 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449466", "POINTID": "1102653956711", "FULLNAME": "Century Mall", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.338924, 41.468369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439028", "POINTID": "1102653990345", "FULLNAME": "Merrillville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.332811, 41.482814 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432405", "POINTID": "1102653972411", "FULLNAME": "Chapel Manor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.331701, 41.476147 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449468", "POINTID": "1102653957071", "FULLNAME": "Crossroad Plaza Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.338366, 41.506448 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010866122007", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.338420, 41.515559 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311545446", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.332455, 41.522582 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449926", "POINTID": "1102654019202", "FULLNAME": "Saints Peter and Paul Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.330590, 41.517814 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015921833550", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.330140, 41.521074 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435106", "POINTID": "1102653980839", "FULLNAME": "Glen Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.336148, 41.541703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104474288189", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.340356, 41.582712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104474288189", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.340356, 41.582712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292761", "FULLNAME": "Police Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.336145, 41.591146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270802387", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.338449, 41.603396 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433371", "POINTID": "1102653975254", "FULLNAME": "Dayville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.322227, 37.954208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732880917", "FULLNAME": "Bluestem Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.325044, 38.037147 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046592377", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.328555, 38.040132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439612", "POINTID": "1102654016447", "FULLNAME": "Mount Olive Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.328343, 38.161155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105576006375", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.324378, 38.409350 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105576006000", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.322386, 38.413942 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433375", "POINTID": "1102654011206", "FULLNAME": "Dejarnett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.328901, 38.428101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446093", "POINTID": "1102654022038", "FULLNAME": "Willis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.328903, 38.443378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445594", "POINTID": "1102654021598", "FULLNAME": "Weathers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.320291, 38.489212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12552 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441730", "POINTID": "1102653995977", "FULLNAME": "Ragsdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.325014, 38.745877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437070", "POINTID": "1102653985533", "FULLNAME": "Johnstown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.323349, 38.764489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444885", "POINTID": "1102654021023", "FULLNAME": "Trimble Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.330295, 38.976987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431334", "POINTID": "1102654008056", "FULLNAME": "Booker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.321962, 39.011708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437204", "POINTID": "1102653985787", "FULLNAME": "Keller", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.324185, 39.360314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12477 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452392", "POINTID": "1102653962229", "FULLNAME": "Riley Conservation Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.321686, 39.389203 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350995852", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.326012, 39.412449 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350937283", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.328702, 39.421061 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109097346004", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.322941, 39.492912 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442151", "POINTID": "1102654018636", "FULLNAME": "Roberts Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.320854, 39.508368 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435888", "POINTID": "1102654013262", "FULLNAME": "Haven Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.324188, 39.542257 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350960050", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.329314, 39.560357 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442993", "POINTID": "1102653997599", "FULLNAME": "Sandcut", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.323630, 39.564759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102610499719", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.329995, 39.725743 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452166", "POINTID": "1102653965363", "FULLNAME": "Arabia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.321951, 39.766146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430230", "POINTID": "1102654006691", "FULLNAME": "Arabia Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.322509, 39.767812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430892", "POINTID": "1102654007452", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.325567, 39.974481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442133", "POINTID": "1102654018632", "FULLNAME": "Robb Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.320009, 40.279479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442133", "POINTID": "1102654018632", "FULLNAME": "Robb Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.320009, 40.279479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12367 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434545", "POINTID": "1102653979016", "FULLNAME": "Five Points", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.320009, 40.316700 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12366 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438780", "POINTID": "1102654015628", "FULLNAME": "McCabe Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.320564, 40.323923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432953", "POINTID": "1102653951528", "FULLNAME": "Copeland Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.321396, 40.342809 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431521", "POINTID": "1102654008429", "FULLNAME": "Brier Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.330287, 40.360591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12357 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442229", "POINTID": "1102653996868", "FULLNAME": "Rocky Ford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.328067, 40.399755 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437086", "POINTID": "1102654014298", "FULLNAME": "Jones Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.320846, 40.459756 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12331 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434729", "POINTID": "1102653979716", "FULLNAME": "Fowler", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.320849, 40.616703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12302 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452334", "POINTID": "1102653958768", "FULLNAME": "Hazelden Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.321133, 40.863091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047020005", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.329303, 41.407352 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047020006", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.326433, 41.412312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107061273687", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.323381, 41.437131 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103409996311", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.325180, 41.451948 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270789562", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.319424, 41.451766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292682", "FULLNAME": "Nipsco Southlake Complex Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.323925, 41.463282 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450265", "POINTID": "1102654015966", "FULLNAME": "Merrillville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.325591, 41.485591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047030185", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.326326, 41.504699 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047030186", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.323236, 41.506356 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449964", "POINTID": "1102653962412", "FULLNAME": "Salvatorian Fathers Monastery", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.329756, 41.513368 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270759673", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.324778, 41.513809 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015921833550", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.330140, 41.521074 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052003337", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.324016, 41.525313 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052003342", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.325229, 41.524991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8435, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045959659", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.323279, 41.586056 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12648 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430571", "POINTID": "1102654007113", "FULLNAME": "Bates Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.312504, 37.924765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732881091", "FULLNAME": "Deer Run Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.317539, 38.028510 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732880575", "FULLNAME": "Geneva Way", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.312574, 38.026913 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732880767", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.316340, 38.031996 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292532", "FULLNAME": "Boonville Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.317783, 38.042542 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732882625", "FULLNAME": "Aigner Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.311531, 38.045833 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445689", "POINTID": "1102654021664", "FULLNAME": "Wesley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.314173, 38.105878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12623 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439456", "POINTID": "1102654016245", "FULLNAME": "Morrison Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.316675, 38.140877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12614 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442051", "POINTID": "1102653954248", "FULLNAME": "Ringham Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.313896, 38.215323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12576 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434811", "POINTID": "1102654012218", "FULLNAME": "Freeland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.313902, 38.544213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445878", "POINTID": "1102654002670", "FULLNAME": "Wheatland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.309460, 38.663657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433401", "POINTID": "1102654011173", "FULLNAME": "Deckard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.317517, 39.060318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446726", "POINTID": "1102653982898", "FULLNAME": "Hawton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.311128, 39.126429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446727", "POINTID": "1102653966316", "FULLNAME": "Baker", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.312518, 39.130595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444150", "POINTID": "1102654020363", "FULLNAME": "Stewart Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.315852, 39.555036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444150", "POINTID": "1102654020363", "FULLNAME": "Stewart Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.315852, 39.555036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072895853", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.309487, 39.566422 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439124", "POINTID": "1102653990563", "FULLNAME": "Midway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.317515, 39.775314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444565", "POINTID": "1102654000291", "FULLNAME": "Tangier", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.318067, 39.919204 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110131726867", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.308591, 39.992926 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110131728658", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.308476, 39.996900 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110131728706", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.308347, 39.997856 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110131712862", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.309618, 40.004044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430544", "POINTID": "1102654007079", "FULLNAME": "Bartlett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.316954, 40.385034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441749", "POINTID": "1102654018250", "FULLNAME": "Rainsville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.315010, 40.411423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441748", "POINTID": "1102653996005", "FULLNAME": "Rainsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.315567, 40.415867 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436407", "POINTID": "1102653984168", "FULLNAME": "Hooker Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.316375, 40.454732 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436406", "POINTID": "1102654013760", "FULLNAME": "Hooker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.316123, 40.449200 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449722", "POINTID": "1102653997065", "FULLNAME": "Roselawn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.314749, 41.141700 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441369", "POINTID": "1102654017980", "FULLNAME": "Plum Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.318365, 41.289200 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12249 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270756775", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.317646, 41.296153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047021717", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.314460, 41.423850 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047021793", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.313153, 41.425887 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047023522", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.308650, 41.434597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047023522", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.308650, 41.434597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270789562", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.319424, 41.451766 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270792176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.317171, 41.454992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270789528", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.315439, 41.463390 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045954991", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.309259, 41.461800 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449465", "POINTID": "1102653962716", "FULLNAME": "Southlake Mall", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.309755, 41.468369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045924229", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.311536, 41.512438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12649 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446363", "POINTID": "1102654003413", "FULLNAME": "Yankeetown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.297779, 37.917541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292521", "FULLNAME": "Cornell Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.297613, 37.981651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12633 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017129086358", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.300590, 38.050013 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12622 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438701", "POINTID": "1102654015550", "FULLNAME": "Massey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.304173, 38.149766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12616 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438436", "POINTID": "1102654015359", "FULLNAME": "Lynnville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.302231, 38.200879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440472", "POINTID": "1102653993697", "FULLNAME": "Oakland City Junction", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.301400, 38.331713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446059", "POINTID": "1102654022022", "FULLNAME": "Williams Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.298342, 38.353657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446352", "POINTID": "1102654022290", "FULLNAME": "Wyatt Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.307234, 38.403381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435127", "POINTID": "1102653980949", "FULLNAME": "Glezen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.301124, 38.416434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105576005761", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.300944, 38.432923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436777", "POINTID": "1102654014120", "FULLNAME": "Indian Mound Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.302513, 38.491436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12552 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440505", "POINTID": "1102654017137", "FULLNAME": "Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.308071, 38.746988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431003", "POINTID": "1102653967981", "FULLNAME": "Bicknell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.307794, 38.774211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010889105267", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.304152, 38.781876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434813", "POINTID": "1102653979944", "FULLNAME": "Freelandville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.305850, 38.864765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443667", "POINTID": "1102654019934", "FULLNAME": "Smith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.307794, 39.017542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441189", "POINTID": "1102654017872", "FULLNAME": "Pirtle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.300850, 39.021986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444270", "POINTID": "1102653999702", "FULLNAME": "Stringtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.297516, 39.053374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436992", "POINTID": "1102653985422", "FULLNAME": "Jericho", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.297516, 39.061431 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444270", "POINTID": "1102653999702", "FULLNAME": "Stringtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.297516, 39.053374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443133", "POINTID": "1102653997825", "FULLNAME": "Scotchtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.297795, 39.075041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435456", "POINTID": "1102653981718", "FULLNAME": "Greenville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.301961, 39.140872 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436673", "POINTID": "1102653984717", "FULLNAME": "Hymera", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.301684, 39.186429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292540", "FULLNAME": "Ellis Fly-in Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.303184, 39.282821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431150", "POINTID": "1102653968239", "FULLNAME": "Blackhawk", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.300295, 39.308927 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431150", "POINTID": "1102653968239", "FULLNAME": "Blackhawk", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.300295, 39.308927 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444888", "POINTID": "1102653955068", "FULLNAME": "Trimmer Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.302242, 39.350401 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437819", "POINTID": "1102654014957", "FULLNAME": "Liberty Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.306177, 39.354358 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12477 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048131077", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.304289, 39.393458 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442015", "POINTID": "1102653996501", "FULLNAME": "Riley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.300019, 39.390038 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048131076", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.304562, 39.395477 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292473", "FULLNAME": "Terre Haute Intl-Hulman Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.307585, 39.451469 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432385", "POINTID": "1102654009664", "FULLNAME": "Chamberlain Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.305576, 39.489757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072895845", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.306676, 39.565932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442386", "POINTID": "1102654018761", "FULLNAME": "Rukes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.299740, 39.611148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440700", "POINTID": "1102654017494", "FULLNAME": "Orlea Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.304739, 39.680870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431434", "POINTID": "1102653969169", "FULLNAME": "Bradfield Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.298906, 39.732260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445560", "POINTID": "1102654021582", "FULLNAME": "Watts Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.303071, 39.780593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445472", "POINTID": "1102654021531", "FULLNAME": "Warner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.305847, 39.838369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433374", "POINTID": "1102654011167", "FULLNAME": "Debaun Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.298900, 39.869759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442403", "POINTID": "1102654018785", "FULLNAME": "Rush Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.304176, 39.923925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110131726857", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.305979, 39.993791 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110131728668", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.300102, 39.992433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110131728658", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.308476, 39.996900 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110131725629", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.307483, 40.001026 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110131726857", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.305979, 39.993791 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110131711869", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.303602, 40.003354 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110131725566", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.301620, 40.003783 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12387 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292237", "FULLNAME": "Rice Private Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.308063, 40.152811 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431603", "POINTID": "1102654008576", "FULLNAME": "Brown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.300008, 40.207813 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691470838", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.303575, 40.294584 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691470867", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.302245, 40.294615 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12363 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436283", "POINTID": "1102653952681", "FULLNAME": "Hog Back Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.299453, 40.350034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12331 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102403043449", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.307368, 40.620747 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12291 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449698", "POINTID": "1102653991604", "FULLNAME": "Mt Ayr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.299190, 40.951979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450105", "POINTID": "1102654018685", "FULLNAME": "Roselawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.302250, 41.145034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346937563", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.303074, 41.151455 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433566", "POINTID": "1102653975880", "FULLNAME": "Dinwiddie", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.301143, 41.289479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104468858902", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.303388, 41.303806 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104468858894", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.300400, 41.303812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270757867", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.303261, 41.415623 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270795689", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.300770, 41.418576 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047023435", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.306188, 41.434024 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435385", "POINTID": "1102653981500", "FULLNAME": "Green Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.297256, 41.483923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435385", "POINTID": "1102653981500", "FULLNAME": "Green Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.297256, 41.483923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434266", "POINTID": "1102654011748", "FULLNAME": "Evergreen Memorial Pk", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.305034, 41.543646 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047292544", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.303916, 41.560244 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270668289", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.299434, 41.578493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12623 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444995", "POINTID": "1102654001084", "FULLNAME": "Turpin Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.290285, 38.142267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12622 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435291", "POINTID": "1102653981199", "FULLNAME": "Graham Vly", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.290561, 38.149488 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12616 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438435", "POINTID": "1102653988882", "FULLNAME": "Lynnville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.296674, 38.196156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445050", "POINTID": "1102654021173", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.292787, 38.307267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445050", "POINTID": "1102654021173", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.292787, 38.307267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444973", "POINTID": "1102653955197", "FULLNAME": "Turkey Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.289732, 38.361712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433203", "POINTID": "1102654010964", "FULLNAME": "Crow Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.291677, 38.392824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438183", "POINTID": "1102653988293", "FULLNAME": "Littles", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.287233, 38.401157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105576005630", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.290840, 38.439586 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12587 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446094", "POINTID": "1102654002970", "FULLNAME": "Willisville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.295569, 38.450879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12586 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440612", "POINTID": "1102654017368", "FULLNAME": "Old Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.295290, 38.457823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444286", "POINTID": "1102654020509", "FULLNAME": "Stuckey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.293624, 38.478381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445798", "POINTID": "1102654002435", "FULLNAME": "West Petersburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.289180, 38.487547 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013028609655", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.294348, 38.490159 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12581 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445433", "POINTID": "1102654021502", "FULLNAME": "Walnut Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.290014, 38.500047 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12572 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02013786", "POINTID": "1102654021489", "FULLNAME": "Walnut Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.289180, 38.578102 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441475", "POINTID": "1102654018058", "FULLNAME": "Posey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.296961, 38.991154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444270", "POINTID": "1102653999702", "FULLNAME": "Stringtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.297516, 39.053374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436992", "POINTID": "1102653985422", "FULLNAME": "Jericho", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.297516, 39.061431 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444270", "POINTID": "1102653999702", "FULLNAME": "Stringtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.297516, 39.053374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444585", "POINTID": "1102654020784", "FULLNAME": "Taylor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.286685, 39.275871 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12479 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437081", "POINTID": "1102654014273", "FULLNAME": "Jones Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.290851, 39.372816 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015496708459", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.296017, 39.397720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444453", "POINTID": "1102654000058", "FULLNAME": "Swalls", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.288909, 39.460314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444454", "POINTID": "1102654020639", "FULLNAME": "Swalls Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.295574, 39.462814 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109097368071", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.291379, 39.478746 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435236", "POINTID": "1102653981128", "FULLNAME": "Gospel Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.292798, 39.476423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433907", "POINTID": "1102653976806", "FULLNAME": "East Glenn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.295574, 39.485870 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109097368098", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.292881, 39.479076 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109097368071", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.291379, 39.478746 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439058", "POINTID": "1102654016028", "FULLNAME": "Mewhinney Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.295574, 39.487814 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259590474", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.293496, 39.501992 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015496769338", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.291229, 39.501990 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350991373", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.286551, 39.496979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431848", "POINTID": "1102653970700", "FULLNAME": "Burnett", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.295574, 39.542813 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433073", "POINTID": "1102653974185", "FULLNAME": "Coxville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.294461, 39.651981 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432807", "POINTID": "1102653973621", "FULLNAME": "Coloma", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.291959, 39.788370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452146", "POINTID": "1102653973441", "FULLNAME": "Coke Oven Holw", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.291956, 39.853093 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444521", "POINTID": "1102654000169", "FULLNAME": "Sylvania", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.294456, 39.918926 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435855", "POINTID": "1102653982779", "FULLNAME": "Harveysburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.294732, 39.982258 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110135493905", "FULLNAME": "Community Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -87.296958, 40.290855 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439860", "POINTID": "1102653991922", "FULLNAME": "Mudlavia Springs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.292785, 40.338369 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437450", "POINTID": "1102653986548", "FULLNAME": "Kramer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.287509, 40.338645 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435365", "POINTID": "1102654012807", "FULLNAME": "Gray Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.287788, 40.441423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435168", "POINTID": "1102653981077", "FULLNAME": "Goodland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.293630, 40.763371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435169", "POINTID": "1102654012598", "FULLNAME": "Goodland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.287541, 40.775720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12308 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441014", "POINTID": "1102653994720", "FULLNAME": "Percy Junction", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.296687, 40.809203 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434645", "POINTID": "1102653979341", "FULLNAME": "Foresman", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.295022, 40.866146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346934153", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.286726, 41.141520 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346937630", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.296661, 41.151378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346938112", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.294137, 41.158186 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346937503", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.290277, 41.160880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270756637", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.289335, 41.306105 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443873", "POINTID": "1102653998938", "FULLNAME": "Southeast Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.296698, 41.333091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435385", "POINTID": "1102653981500", "FULLNAME": "Green Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.297256, 41.483923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435385", "POINTID": "1102653981500", "FULLNAME": "Green Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.297256, 41.483923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270753534", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.294214, 41.509523 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047436394", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.288407, 41.532565 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109093918052", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.296127, 41.547458 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438185", "POINTID": "1102653988311", "FULLNAME": "Liverpool", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.294756, 41.552534 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718528652", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.288533, 41.559957 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430025", "POINTID": "1102653964229", "FULLNAME": "Aetna", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.289480, 41.591978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110352420060", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.278810, 38.030198 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438548", "POINTID": "1102654015407", "FULLNAME": "Maple Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.275283, 38.034487 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12625 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435425", "POINTID": "1102653981577", "FULLNAME": "Greenbrier", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.283617, 38.120599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12614 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433830", "POINTID": "1102653951927", "FULLNAME": "Dyson Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.284175, 38.214490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12612 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442762", "POINTID": "1102654019136", "FULLNAME": "Saint Pauls Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.280565, 38.231712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12609 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443529", "POINTID": "1102654019841", "FULLNAME": "Simpson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.283064, 38.263659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432756", "POINTID": "1102654010269", "FULLNAME": "Coleman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.280841, 38.299214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433344", "POINTID": "1102654011143", "FULLNAME": "Davis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.281120, 38.333380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438690", "POINTID": "1102653989642", "FULLNAME": "Marysville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.278344, 38.351991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12586 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437033", "POINTID": "1102654014238", "FULLNAME": "Johnson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.276957, 38.456991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449831", "POINTID": "1102653965770", "FULLNAME": "Ashby Yards", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.284735, 38.474492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504359640", "FULLNAME": "Solar Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.282512, 38.495880 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449709", "POINTID": "1102653994833", "FULLNAME": "Petersburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.278623, 38.491990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12572 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452179", "POINTID": "1102653995355", "FULLNAME": "Pond Creek Mills", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.286404, 38.577823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105576004182", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.281283, 38.648381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292358", "FULLNAME": "Godahavit Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.281514, 38.653919 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00448374", "POINTID": "1102653962883", "FULLNAME": "Storks Ferry", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.277236, 38.660322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12513 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432215", "POINTID": "1102653971716", "FULLNAME": "Cass", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.278582, 39.086938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437392", "POINTID": "1102654014621", "FULLNAME": "Knights of Columbus Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.277239, 39.186150 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432944", "POINTID": "1102654010581", "FULLNAME": "Cooper Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.278352, 39.425870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350991373", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.286551, 39.496979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442304", "POINTID": "1102653997042", "FULLNAME": "Rosedale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.283351, 39.622813 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445059", "POINTID": "1102654021188", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.280015, 39.731981 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452165", "POINTID": "1102653987483", "FULLNAME": "Leatherwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.285293, 39.751704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436077", "POINTID": "1102654013441", "FULLNAME": "Hethcoe Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.276402, 39.810592 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452172", "POINTID": "1102653996845", "FULLNAME": "Rockport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.278902, 39.880871 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437330", "POINTID": "1102653986079", "FULLNAME": "Kingman", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.277510, 39.967537 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446657", "POINTID": "1102653988943", "FULLNAME": "Mackie", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.285285, 40.060314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436156", "POINTID": "1102654013535", "FULLNAME": "Highland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.281951, 40.293089 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436224", "POINTID": "1102654013602", "FULLNAME": "Hillside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.280007, 40.291700 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12366 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437273", "POINTID": "1102654014467", "FULLNAME": "Kester Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.284451, 40.327534 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434388", "POINTID": "1102653978455", "FULLNAME": "Fargo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.279457, 40.518923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444465", "POINTID": "1102654000067", "FULLNAME": "Swanington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.277236, 40.583367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12331 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430485", "POINTID": "1102653966669", "FULLNAME": "Barce", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.276681, 40.620869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445342", "POINTID": "1102654001629", "FULLNAME": "Wadena", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.276683, 40.693370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439525", "POINTID": "1102654016314", "FULLNAME": "Mount Calvary Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.286047, 40.773317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446685", "POINTID": "1102653994633", "FULLNAME": "Pembroke", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.276970, 41.100312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346936058", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.277566, 41.148371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346936407", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.282295, 41.160799 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346937514", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.278679, 41.160731 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346937614", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.277770, 41.164345 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12253 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441765", "POINTID": "1102653996051", "FULLNAME": "Range Line", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.276142, 41.269479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12252 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441765", "POINTID": "1102653996051", "FULLNAME": "Range Line", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.276142, 41.269479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446178", "POINTID": "1102654003095", "FULLNAME": "Winfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.275310, 41.405312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479099", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.276619, 41.421648 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479535", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.282279, 41.430758 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479536", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.278577, 41.431343 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047489689", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.277357, 41.523064 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047437028", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.276292, 41.520134 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047489687", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.275267, 41.517226 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047436393", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.282351, 41.534055 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441819", "POINTID": "1102653996161", "FULLNAME": "Red Bush", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.271947, 37.938376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12645 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735773319", "FULLNAME": "Jessica Lane", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.267357, 37.950363 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441019", "POINTID": "1102654017763", "FULLNAME": "Perigo Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.274170, 38.018377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052060171", "FULLNAME": "S 4th St", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.273312, 38.037195 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12633 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431342", "POINTID": "1102653968904", "FULLNAME": "Boonville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.274168, 38.049208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12631 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432696", "POINTID": "1102654010154", "FULLNAME": "Clutter Stone Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.273615, 38.068378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12626 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452287", "POINTID": "1102653956084", "FULLNAME": "Boonville Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.271668, 38.111990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12613 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292491", "FULLNAME": "Solar Number 1 Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.269728, 38.225878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439888", "POINTID": "1102653991983", "FULLNAME": "Muren", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.268900, 38.366436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435976", "POINTID": "1102654013358", "FULLNAME": "Hedges Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.268900, 38.399212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105576004735", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.264308, 38.472925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440607", "POINTID": "1102654017354", "FULLNAME": "Old Town Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.273902, 38.490879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438848", "POINTID": "1102654015700", "FULLNAME": "McDade Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.266960, 38.976111 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446323", "POINTID": "1102654022229", "FULLNAME": "Woodward Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.267792, 39.030319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439649", "POINTID": "1102654016465", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.269184, 39.236984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442385", "POINTID": "1102654018756", "FULLNAME": "Ruggles Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.265295, 39.276150 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443203", "POINTID": "1102653997996", "FULLNAME": "Seelyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.267242, 39.491980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109097366414", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.271021, 39.501460 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439487", "POINTID": "1102654016262", "FULLNAME": "Moses Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.267239, 39.515590 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452147", "POINTID": "1102653999746", "FULLNAME": "Stumptown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.274457, 39.852259 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438196", "POINTID": "1102653988346", "FULLNAME": "Lochiel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.273905, 40.664203 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12289 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431860", "POINTID": "1102654008902", "FULLNAME": "Burr Oak Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.267245, 40.969479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329196672", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.273602, 41.150326 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329196627", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.267956, 41.152837 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329195958", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.269187, 41.155407 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434647", "POINTID": "1102653979383", "FULLNAME": "Forest City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.266695, 41.194756 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12242 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449683", "POINTID": "1102653987696", "FULLNAME": "Leroy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.271976, 41.360035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446178", "POINTID": "1102654003095", "FULLNAME": "Winfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.275310, 41.405312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015486676902", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.271593, 41.415330 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479094", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.268873, 41.417538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047287727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.272440, 41.421195 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047492162", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.264549, 41.426197 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047492161", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.271770, 41.430094 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047492162", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.264549, 41.426197 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047489688", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.273776, 41.514944 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047436834", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.267569, 41.515392 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047489687", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.275267, 41.517226 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047436959", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.269704, 41.518395 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452299", "POINTID": "1102653957015", "FULLNAME": "Cressmoor Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.268924, 41.548646 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436257", "POINTID": "1102653958947", "FULLNAME": "Hobart Sky Ranch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.266421, 41.556701 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440035", "POINTID": "1102653992401", "FULLNAME": "New Chicago", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.274479, 41.558369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8440, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02041363", "POINTID": "1102653976398", "FULLNAME": "Duneland Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.272258, 41.602535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435973", "POINTID": "1102654013352", "FULLNAME": "Hedge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.261392, 37.968098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440986", "POINTID": "1102653994626", "FULLNAME": "Pelzer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.257227, 37.989210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046595142", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.263396, 38.037001 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444733", "POINTID": "1102654020899", "FULLNAME": "Thornburg Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.255835, 38.033097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110352449782", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.264179, 38.043520 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12633 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110352420314", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.259434, 38.049014 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12623 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433988", "POINTID": "1102653977042", "FULLNAME": "Eby", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.261395, 38.141989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12610 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444435", "POINTID": "1102653999308", "FULLNAME": "Spurgeon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.257229, 38.252269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434216", "POINTID": "1102653977877", "FULLNAME": "Enos Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.261119, 38.289215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449045", "POINTID": "1102653973381", "FULLNAME": "Coe", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.258064, 38.306435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444354", "POINTID": "1102654020556", "FULLNAME": "Sugar Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.259177, 38.398380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105576004735", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.264308, 38.472925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440506", "POINTID": "1102654017138", "FULLNAME": "Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.259458, 38.796434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443177", "POINTID": "1102653954533", "FULLNAME": "Scudder Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.255569, 38.824766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431756", "POINTID": "1102653970332", "FULLNAME": "Bucktown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.260016, 38.994764 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434932", "POINTID": "1102653980245", "FULLNAME": "Gambill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.259737, 39.048929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433758", "POINTID": "1102654011432", "FULLNAME": "Dugger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.258627, 39.061151 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447635", "POINTID": "1102653976339", "FULLNAME": "Dugger", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.261406, 39.070042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437800", "POINTID": "1102653987752", "FULLNAME": "Lewis", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.257516, 39.260038 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431626", "POINTID": "1102653969977", "FULLNAME": "Brown Jug Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.258906, 39.288094 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433633", "POINTID": "1102654011386", "FULLNAME": "Donham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.256685, 39.319761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435311", "POINTID": "1102653981293", "FULLNAME": "Grange Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.258074, 39.445871 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436668", "POINTID": "1102654014003", "FULLNAME": "Hyde Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.256685, 39.473924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109097367576", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.263852, 39.513819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452220", "POINTID": "1102653960776", "FULLNAME": "Milton Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.255574, 39.565313 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437002", "POINTID": "1102653985436", "FULLNAME": "Jessup", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.256682, 39.657259 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442412", "POINTID": "1102654018787", "FULLNAME": "Russell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.263270, 39.893471 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431535", "POINTID": "1102654008452", "FULLNAME": "Bristleridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.258066, 39.905315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446374", "POINTID": "1102654003425", "FULLNAME": "Yeddo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.259879, 40.011381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292221", "FULLNAME": "Songer Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.259842, 40.078634 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449742", "POINTID": "1102654001419", "FULLNAME": "Veedersburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.262508, 40.113092 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442089", "POINTID": "1102654018589", "FULLNAME": "Riverside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.255006, 40.275591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471641684", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.258388, 40.447084 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471641684", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.258388, 40.447084 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440818", "POINTID": "1102654017581", "FULLNAME": "Oxford Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.259456, 40.518367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449652", "POINTID": "1102653978199", "FULLNAME": "Fair Oaks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.257524, 41.075034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450300", "POINTID": "1102653959915", "FULLNAME": "Lake Region Christian Assembly Church Camp", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.254754, 41.398646 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047288208", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.257240, 41.406517 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047287941", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.255464, 41.416754 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047492162", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.264549, 41.426197 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047492164", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.261910, 41.423532 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450285", "POINTID": "1102654011191", "FULLNAME": "Deer Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.258367, 41.422257 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047492162", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.264549, 41.426197 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450270", "POINTID": "1102654009791", "FULLNAME": "Chester Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.258965, 41.480304 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430149", "POINTID": "1102653964245", "FULLNAME": "Ainsworth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.258632, 41.487910 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046957055", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.254660, 41.503953 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292649", "FULLNAME": "St Mary Medical Ctr", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.260765, 41.511325 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047489718", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.255277, 41.510857 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047436999", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.261693, 41.520330 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047489685", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.256229, 41.519861 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436256", "POINTID": "1102653983934", "FULLNAME": "Hobart", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.255059, 41.532246 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270771545", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.261186, 41.541150 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047292301", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.257983, 41.540795 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270753409", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.258737, 41.545611 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270736633", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.256918, 41.544210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292722", "FULLNAME": "Hobart Sky Ranch Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.263101, 41.553414 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439177", "POINTID": "1102653990720", "FULLNAME": "Miller", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.258367, 41.602256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12647 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435110", "POINTID": "1102654012561", "FULLNAME": "Glendale Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.244446, 37.929766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447931", "POINTID": "1102653995833", "FULLNAME": "Pyeattville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.251945, 37.941987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732893521", "FULLNAME": "Red Barn Road", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.242348, 38.013461 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732893521", "FULLNAME": "Red Barn Road", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.242348, 38.013461 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430283", "POINTID": "1102653965657", "FULLNAME": "Arthur", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.245841, 38.340602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12585 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504359632", "FULLNAME": "Alford Airpark", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.248721, 38.463320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110116088079", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.252544, 38.485225 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048443890", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.244639, 38.480310 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430070", "POINTID": "1102653964421", "FULLNAME": "Alford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.242788, 38.491436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12579 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430241", "POINTID": "1102653965475", "FULLNAME": "Arda", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.250567, 38.517268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444812", "POINTID": "1102653955036", "FULLNAME": "Toms Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.250291, 38.666991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434033", "POINTID": "1102653977210", "FULLNAME": "Edwardsport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.252235, 38.811989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441356", "POINTID": "1102653995262", "FULLNAME": "Pleasantville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.250293, 38.966988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435599", "POINTID": "1102654013049", "FULLNAME": "Hale Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.245294, 39.015874 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431867", "POINTID": "1102654008925", "FULLNAME": "Burris Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.250572, 39.141983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439057", "POINTID": "1102654016027", "FULLNAME": "Mewhinney Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.248075, 39.426703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444535", "POINTID": "1102654000224", "FULLNAME": "Tabertown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.253075, 39.494758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434631", "POINTID": "1102653979309", "FULLNAME": "Fontanet", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.243628, 39.576149 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430005", "POINTID": "1102654006373", "FULLNAME": "Adams Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.248628, 39.645315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107078033161", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.247973, 39.768362 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431203", "POINTID": "1102654007793", "FULLNAME": "Bloomingdale Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.251680, 39.816427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431202", "POINTID": "1102653968482", "FULLNAME": "Bloomingdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.249735, 39.833370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430182", "POINTID": "1102653965143", "FULLNAME": "Annapolis", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.250567, 39.852537 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452114", "POINTID": "1102653972055", "FULLNAME": "Centennial", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.243341, 40.011426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444103", "POINTID": "1102653999430", "FULLNAME": "Steam Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.243341, 40.042815 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431317", "POINTID": "1102654007980", "FULLNAME": "Bonebrake Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.242507, 40.083370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432751", "POINTID": "1102654010240", "FULLNAME": "Cold Springs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.243341, 40.134635 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12388 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443535", "POINTID": "1102653998497", "FULLNAME": "Simpson Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.243145, 40.142517 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449735", "POINTID": "1102653999583", "FULLNAME": "Stone Blf", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.252785, 40.170036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436619", "POINTID": "1102653984538", "FULLNAME": "Hunter Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.243062, 40.171424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430367", "POINTID": "1102653966180", "FULLNAME": "Aylesworth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.243062, 40.203092 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12377 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449720", "POINTID": "1102653996762", "FULLNAME": "Rob Roy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.243338, 40.236702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452332", "POINTID": "1102653958689", "FULLNAME": "Harrison Hills Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.244615, 40.285052 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430330", "POINTID": "1102653965943", "FULLNAME": "Attica", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.248896, 40.294200 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12367 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435101", "POINTID": "1102653980810", "FULLNAME": "Glen Clf", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.248896, 40.316424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12363 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430897", "POINTID": "1102654007466", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.244730, 40.352533 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12358 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441684", "POINTID": "1102654018207", "FULLNAME": "Quaker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.244175, 40.396423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12344 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437149", "POINTID": "1102654014325", "FULLNAME": "Justus Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.248901, 40.513367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440817", "POINTID": "1102653994336", "FULLNAME": "Oxford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.247788, 40.519755 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12342 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110129210185", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.248263, 40.525546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12338 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430324", "POINTID": "1102653965901", "FULLNAME": "Atkinson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.246680, 40.562813 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12293 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329644787", "FULLNAME": "Curtis Creek Golf Course", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -87.249078, 40.931295 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471601111", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.246168, 41.150280 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12242 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109093244465", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.252412, 41.352825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476483432", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.243199, 41.395600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976476", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.251557, 41.416110 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976478", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.250693, 41.424640 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976477", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.247303, 41.422838 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270781987", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.249902, 41.462886 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103687046268", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.244293, 41.508437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270734184", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.251079, 41.510174 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109093832366", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.244671, 41.513183 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103687046268", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.244293, 41.508437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109093892002", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.246844, 41.528058 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040146", "POINTID": "1102654013661", "FULLNAME": "Hobart City Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.252533, 41.535312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047482425", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.250958, 41.546527 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047482428", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.243665, 41.548403 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047482426", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.248531, 41.549622 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047481699", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.251894, 41.559327 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02041356", "POINTID": "1102653956695", "FULLNAME": "Central Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.252257, 41.572812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445480", "POINTID": "1102654021537", "FULLNAME": "Warren Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.240635, 37.972363 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732893521", "FULLNAME": "Red Barn Road", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.242348, 38.013461 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732893521", "FULLNAME": "Red Barn Road", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.242348, 38.013461 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441223", "POINTID": "1102654017894", "FULLNAME": "Plainview Memorial Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.233489, 38.039437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441223", "POINTID": "1102654017894", "FULLNAME": "Plainview Memorial Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.233489, 38.039437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430370", "POINTID": "1102653966206", "FULLNAME": "Ayrshire", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.240841, 38.371990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432088", "POINTID": "1102653971327", "FULLNAME": "Campbelltown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.240010, 38.421436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048476870", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.238886, 38.487831 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048476876", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.240396, 38.488316 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048476870", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.238886, 38.487831 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12568 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444685", "POINTID": "1102654000565", "FULLNAME": "Thomas", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.231679, 38.612824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452409", "POINTID": "1102653963503", "FULLNAME": "Washington Waterworks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.236957, 38.647824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452194", "POINTID": "1102654001649", "FULLNAME": "Wagner Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.233626, 38.851989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430746", "POINTID": "1102654007311", "FULLNAME": "Begeman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.234991, 38.882128 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446729", "POINTID": "1102653965227", "FULLNAME": "Antioch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.237515, 39.098652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435082", "POINTID": "1102653980713", "FULLNAME": "Gilmour", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.240849, 39.131427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436107", "POINTID": "1102653983382", "FULLNAME": "Hickory Is", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.239462, 39.329482 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432447", "POINTID": "1102653972551", "FULLNAME": "Cherryvale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.239462, 39.463371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110260897203", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.232939, 39.495400 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110260897203", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.232939, 39.495400 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432691", "POINTID": "1102653973208", "FULLNAME": "Cloverland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.231408, 39.501425 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434047", "POINTID": "1102653977320", "FULLNAME": "Ehrmandale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.238905, 39.535050 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441954", "POINTID": "1102654018487", "FULLNAME": "Richer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.238352, 39.538926 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444365", "POINTID": "1102654020565", "FULLNAME": "Sullian Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.241683, 39.580592 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433112", "POINTID": "1102654010860", "FULLNAME": "Cress Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.241407, 39.599759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431670", "POINTID": "1102654008663", "FULLNAME": "Brunot Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.232239, 39.635037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432242", "POINTID": "1102653971830", "FULLNAME": "Catlin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.235292, 39.693649 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439006", "POINTID": "1102654015926", "FULLNAME": "Memory Garden Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.235292, 39.773648 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01789057", "POINTID": "1102653961670", "FULLNAME": "Parke County Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.238902, 39.793093 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432738", "POINTID": "1102654010194", "FULLNAME": "Coffin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.241399, 39.846149 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431317", "POINTID": "1102654007980", "FULLNAME": "Bonebrake Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.242507, 40.083370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435794", "POINTID": "1102653982569", "FULLNAME": "Harrison Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.237783, 40.166980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435879", "POINTID": "1102654013254", "FULLNAME": "Hatton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.232191, 40.282157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12361 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446200", "POINTID": "1102654003132", "FULLNAME": "Winthrop", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.233897, 40.370034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12357 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432436", "POINTID": "1102653972520", "FULLNAME": "Chatterton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.239731, 40.403646 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439962", "POINTID": "1102653953699", "FULLNAME": "Mt Nebo", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.241681, 40.691704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12288 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329189345", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.240667, 40.972999 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976442", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.233452, 41.393355 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440845", "POINTID": "1102653994362", "FULLNAME": "Palmer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.238929, 41.391469 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976444", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.232435, 41.391556 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976443", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.231279, 41.393202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046673385", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.239833, 41.395745 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976443", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.231279, 41.393202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976464", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.234329, 41.408949 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976452", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.231394, 41.403632 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976466", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.237947, 41.416247 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270757284", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.236209, 41.416325 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450250", "POINTID": "1102653959940", "FULLNAME": "Lakes of the Four Seasons Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.236142, 41.411979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976481", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.238384, 41.426559 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270792256", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.241694, 41.437778 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102391573959", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.231445, 41.442439 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270753893", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.237491, 41.443185 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102391573812", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.231824, 41.444852 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103687046531", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.240136, 41.506410 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450136", "POINTID": "1102653959143", "FULLNAME": "Indian Ridge Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.239197, 41.501406 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270734216", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.240618, 41.509264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047437743", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.241616, 41.523640 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047482748", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.239787, 41.545314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109093874897", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.234972, 41.555969 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450121", "POINTID": "1102654018905", "FULLNAME": "Saint Francis Xavier Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.240908, 41.572515 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433905", "POINTID": "1102653986873", "FULLNAME": "Lake Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.238921, 41.575033 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449469", "POINTID": "1102653960717", "FULLNAME": "Miller Mall", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.241699, 41.597258 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047481436", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.233545, 41.614883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12655 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430271", "POINTID": "1102654006723", "FULLNAME": "Arnold Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.225276, 37.859767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12650 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435871", "POINTID": "1102653982839", "FULLNAME": "Hatfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.224168, 37.902543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435273", "POINTID": "1102654012717", "FULLNAME": "Graff Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.222500, 37.961712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431797", "POINTID": "1102653970580", "FULLNAME": "Bullocktown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.222779, 37.974767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431590", "POINTID": "1102654008544", "FULLNAME": "Broshears Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.223613, 37.991988 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440058", "POINTID": "1102653992572", "FULLNAME": "New Hope", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.222500, 37.989766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439455", "POINTID": "1102654016252", "FULLNAME": "Morrison Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.230566, 38.495880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12577 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442245", "POINTID": "1102653996879", "FULLNAME": "Rogers", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.223900, 38.538379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438767", "POINTID": "1102653989863", "FULLNAME": "Maysville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.228345, 38.647824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445855", "POINTID": "1102654002594", "FULLNAME": "Westphalia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.225569, 38.862821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445963", "POINTID": "1102654002774", "FULLNAME": "White Rose", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.222793, 39.031153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445276", "POINTID": "1102654001545", "FULLNAME": "Victoria", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.222793, 39.046430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434104", "POINTID": "1102653977495", "FULLNAME": "Ellis", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.222793, 39.063653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440613", "POINTID": "1102654017369", "FULLNAME": "Old Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.225016, 39.174763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432712", "POINTID": "1102653973281", "FULLNAME": "Coalmont", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.231126, 39.193372 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432691", "POINTID": "1102653973208", "FULLNAME": "Cloverland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.231408, 39.501425 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432716", "POINTID": "1102653973319", "FULLNAME": "Cobb", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.223350, 39.581148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439274", "POINTID": "1102653990916", "FULLNAME": "Minshall", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.221682, 39.671704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442226", "POINTID": "1102653996865", "FULLNAME": "Rockville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.229179, 39.762538 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047306027", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.223876, 39.764967 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047305721", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.230844, 39.767001 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110341898379", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.228361, 39.779197 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110341815111", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.222924, 39.775402 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047041684", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.224995, 39.809432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452157", "POINTID": "1102653972780", "FULLNAME": "Cincinnati", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.226121, 39.856983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441794", "POINTID": "1102654018296", "FULLNAME": "Rawlings Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.226400, 39.862260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110341870263", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.230418, 39.904379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442200", "POINTID": "1102654018659", "FULLNAME": "Rock Field Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.228339, 40.093647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12369 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292188", "FULLNAME": "Riley Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.227897, 40.300298 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108633111740", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.225984, 41.153069 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450023", "POINTID": "1102654013708", "FULLNAME": "Holland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.226140, 41.188646 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976443", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.231279, 41.393202 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270771390", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.225091, 41.392407 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976451", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.230721, 41.401365 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046017878", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.226507, 41.395230 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976443", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.231279, 41.393202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976453", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.231574, 41.402334 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976460", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.228441, 41.408436 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969596", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.222023, 41.402467 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976482", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.228251, 41.417790 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976469", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.226518, 41.411995 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730128378", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.230611, 41.425135 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047288236", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.230034, 41.421617 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976474", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.221207, 41.419509 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046017693", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.230096, 41.430167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102391573959", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.231445, 41.442439 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270770861", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.228331, 41.452907 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449646", "POINTID": "1102653975393", "FULLNAME": "Deep River", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.223364, 41.475590 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450237", "POINTID": "1102654011179", "FULLNAME": "Deep River Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.220539, 41.478833 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449646", "POINTID": "1102653975393", "FULLNAME": "Deep River", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.223364, 41.475590 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450134", "POINTID": "1102653962929", "FULLNAME": "Supervisors Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.228149, 41.503367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047482829", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.228060, 41.540267 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047482822", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.225266, 41.540249 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047482786", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.222516, 41.537203 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047482785", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.221999, 41.541799 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292714", "FULLNAME": "Johnsons Strawberry Farm Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.225110, 41.556374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047481581", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.223576, 41.565739 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052051906", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.229200, 41.580846 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633050989", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.220896, 41.598169 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8444, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047481437", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.226810, 41.614556 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12653 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434247", "POINTID": "1102653978041", "FULLNAME": "Eureka", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.215001, 37.880599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443641", "POINTID": "1102654019907", "FULLNAME": "Small Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.218614, 38.027266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437215", "POINTID": "1102654014406", "FULLNAME": "Kelley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.219169, 38.102269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12626 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441846", "POINTID": "1102654018352", "FULLNAME": "Reed Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.216948, 38.108934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12621 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433540", "POINTID": "1102653975820", "FULLNAME": "Dickeyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.219727, 38.156157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443162", "POINTID": "1102653997912", "FULLNAME": "Scottsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.219172, 38.288659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446190", "POINTID": "1102654003128", "FULLNAME": "Winslow", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.212785, 38.382270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443012", "POINTID": "1102653997626", "FULLNAME": "Sandy Hook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.217788, 38.568380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440404", "POINTID": "1102654017045", "FULLNAME": "Oak Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.211401, 38.661156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103541221655", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.210784, 39.160841 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444047", "POINTID": "1102654020209", "FULLNAME": "Stagg Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.211962, 39.360316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435768", "POINTID": "1102654013170", "FULLNAME": "Harpold Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.214464, 39.520593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449640", "POINTID": "1102653973247", "FULLNAME": "Coal Blf", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.220016, 39.582816 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445620", "POINTID": "1102654021609", "FULLNAME": "Webster Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.219182, 39.612259 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433471", "POINTID": "1102654011252", "FULLNAME": "Denman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.211962, 39.617260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435835", "POINTID": "1102654013217", "FULLNAME": "Hartmans Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.218348, 39.641425 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292362", "FULLNAME": "Butler Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.218182, 39.738359 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434061", "POINTID": "1102654011588", "FULLNAME": "Elder Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.215846, 39.824760 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432212", "POINTID": "1102654009466", "FULLNAME": "Cashatt Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.215288, 39.909761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432212", "POINTID": "1102654009466", "FULLNAME": "Cashatt Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.215288, 39.909761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12376 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430994", "POINTID": "1102654007587", "FULLNAME": "Beulah Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.215282, 40.244479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436920", "POINTID": "1102654014197", "FULLNAME": "James Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.219729, 40.381422 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12357 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292500", "FULLNAME": "Cottingham Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.218997, 40.401095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440908", "POINTID": "1102653994517", "FULLNAME": "Parr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.218635, 41.027256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446687", "POINTID": "1102653991006", "FULLNAME": "Moffitt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.218638, 41.101424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010865944653", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.213166, 41.179082 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329212816", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.218603, 41.194284 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102218875563", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.212927, 41.201642 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102218875566", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.212825, 41.195553 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137189791", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.211801, 41.331268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292437", "FULLNAME": "Carlson Farms Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.213885, 41.388330 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718736891", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.219713, 41.400353 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015903023303", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.218632, 41.405768 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969555", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.211734, 41.406370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137180487", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.216803, 41.411484 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046610227", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.213064, 41.413433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047454007", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.214196, 41.420845 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435544", "POINTID": "1102654012988", "FULLNAME": "Guernsey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.218361, 41.429475 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047336946", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.217012, 41.464118 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450237", "POINTID": "1102654011179", "FULLNAME": "Deep River Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.220539, 41.478833 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047506874", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.211991, 41.541498 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047506879", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.217983, 41.541458 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047506876", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.213643, 41.541448 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047506872", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.211962, 41.542969 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047506879", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.217983, 41.541458 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047506876", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.213643, 41.541448 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633816955", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.219805, 41.554712 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137185747", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.214915, 41.557916 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137190307", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.209542, 41.553010 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633795989", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.216178, 41.560926 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137185747", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.214915, 41.557916 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431171", "POINTID": "1102654007759", "FULLNAME": "Blake Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.215867, 41.573368 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137188460", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.216226, 41.566798 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633468006", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.216690, 41.581514 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137185674", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.214445, 41.582387 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137182108", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.213552, 41.588233 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633080906", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.210454, 41.591465 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12653 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430427", "POINTID": "1102654006921", "FULLNAME": "Baker Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.205278, 37.883656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12652 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430427", "POINTID": "1102654006921", "FULLNAME": "Baker Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.205278, 37.883656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431608", "POINTID": "1102654008589", "FULLNAME": "Brown Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.207780, 37.998934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12631 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442332", "POINTID": "1102654018704", "FULLNAME": "Roth Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.206670, 38.066433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439145", "POINTID": "1102654016064", "FULLNAME": "Mill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.205836, 38.100878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12621 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443381", "POINTID": "1102654019660", "FULLNAME": "Shiloh Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.208893, 38.153658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430530", "POINTID": "1102654007075", "FULLNAME": "Barrenfork Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.205836, 38.163659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12616 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443056", "POINTID": "1102653997737", "FULLNAME": "Scalesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.206115, 38.202547 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444422", "POINTID": "1102654020599", "FULLNAME": "Sunset Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.206951, 38.393381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444422", "POINTID": "1102654020599", "FULLNAME": "Sunset Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.206951, 38.393381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12569 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110104968659", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.198974, 38.601635 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435901", "POINTID": "1102654013265", "FULLNAME": "Hawkins Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.203902, 38.662268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437126", "POINTID": "1102653985634", "FULLNAME": "Jordan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.206957, 38.688657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12535 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433455", "POINTID": "1102654011231", "FULLNAME": "Delay Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.205015, 38.898932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444390", "POINTID": "1102653999823", "FULLNAME": "Summit", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.199457, 39.031153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103936874561", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.208008, 39.055343 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430891", "POINTID": "1102654007447", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.199460, 39.103931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436943", "POINTID": "1102653985320", "FULLNAME": "Jasonville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.199181, 39.163097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440406", "POINTID": "1102654017053", "FULLNAME": "Oak Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.199460, 39.173651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431708", "POINTID": "1102653970261", "FULLNAME": "Buchanan Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.203349, 39.192541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110262120306", "FULLNAME": "Briley Cpl", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -87.209033, 39.264687 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440570", "POINTID": "1102653993904", "FULLNAME": "Old Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.207517, 39.301982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432999", "POINTID": "1102653973986", "FULLNAME": "Cory", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.205852, 39.382260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441666", "POINTID": "1102653995812", "FULLNAME": "Purdy Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.208628, 39.506704 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431087", "POINTID": "1102654007631", "FULLNAME": "Billtown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.199739, 39.508370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445006", "POINTID": "1102654001111", "FULLNAME": "Twin Beach", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.205018, 39.518094 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449083", "POINTID": "1102653968036", "FULLNAME": "Billie Creek Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.201957, 39.761426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449855", "POINTID": "1102653962369", "FULLNAME": "Russellville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.203620, 39.926150 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442393", "POINTID": "1102654018766", "FULLNAME": "Ruppert Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.202228, 40.273647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439511", "POINTID": "1102654016310", "FULLNAME": "Mound Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.206399, 40.417811 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12344 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444630", "POINTID": "1102654000444", "FULLNAME": "Templeton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.207783, 40.512806 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12302 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445671", "POINTID": "1102654021643", "FULLNAME": "Welsh Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.203352, 40.861704 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434045", "POINTID": "1102653977301", "FULLNAME": "Egypt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.203907, 40.859203 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12292 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439007", "POINTID": "1102654015936", "FULLNAME": "Memory Gardens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.208075, 40.940036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12291 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440594", "POINTID": "1102654017327", "FULLNAME": "Old Settlers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.200576, 40.948091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12285 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444437", "POINTID": "1102654000045", "FULLNAME": "Surrey", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.200300, 40.998091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446693", "POINTID": "1102653997022", "FULLNAME": "Rosebud", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.200023, 41.026981 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450425", "POINTID": "1102653975413", "FULLNAME": "Deer Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.199192, 41.158923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010866010981", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.199465, 41.186371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476153140", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.207662, 41.193040 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450503", "POINTID": "1102653975594", "FULLNAME": "Demotte", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.198637, 41.195034 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010866011004", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.199495, 41.187346 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102218875283", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.209658, 41.195648 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329169213", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.208011, 41.198254 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450503", "POINTID": "1102653975594", "FULLNAME": "Demotte", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.198637, 41.195034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329201095", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.206930, 41.207494 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12249 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046970902", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.203057, 41.301465 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435964", "POINTID": "1102654013326", "FULLNAME": "Hebron Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.202807, 41.303925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137193401", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.207056, 41.316727 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137192899", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.204269, 41.312931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137193158", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.206404, 41.327334 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137193428", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.209204, 41.319501 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102390085461", "FULLNAME": "Linden Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.209612, 41.328501 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102390080547", "FULLNAME": "Professional Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.204299, 41.333963 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137193119", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.203781, 41.327165 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047695782", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.208976, 41.391487 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046610266", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.208263, 41.399502 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046610263", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.206115, 41.408191 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046610239", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.207348, 41.416842 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046610246", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.207458, 41.410082 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434746", "POINTID": "1102654012154", "FULLNAME": "Frame Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.200308, 41.416146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047454008", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.208488, 41.425626 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472459742", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.201370, 41.425310 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047470688", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.201037, 41.433167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02038119", "POINTID": "1102653957320", "FULLNAME": "Duck Creek Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.207810, 41.523925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137190307", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.209542, 41.553010 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633849526", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.206275, 41.554732 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137182027", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.202480, 41.556268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137326672", "FULLNAME": "Fegley Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.207324, 41.565839 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137190532", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.203231, 41.558100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137224958", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.209242, 41.569541 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137190400", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.200444, 41.568079 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137225065", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.205412, 41.579016 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633481920", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.203194, 41.576944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633081035", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.208110, 41.590482 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137185611", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.199093, 41.589198 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8446, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137224128", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.202545, 41.622440 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12652 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292418", "FULLNAME": "Renshaw Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.188723, 37.891975 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12622 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437789", "POINTID": "1102654014946", "FULLNAME": "Leslie Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.196115, 38.145324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430341", "POINTID": "1102653965998", "FULLNAME": "Augusta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.190839, 38.331438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12577 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430272", "POINTID": "1102654006729", "FULLNAME": "Arnold Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.196676, 38.532269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105032962", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.191201, 38.594265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12565 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432742", "POINTID": "1102654010230", "FULLNAME": "Colbert Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.191955, 38.636435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015481864163", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.191765, 38.662335 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105631383", "FULLNAME": "Longfellow Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -87.187374, 38.666840 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12555 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435278", "POINTID": "1102653981182", "FULLNAME": "Graham", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.196402, 38.721711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432119", "POINTID": "1102653971441", "FULLNAME": "Capehart", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.194179, 38.745601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12552 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432119", "POINTID": "1102653971441", "FULLNAME": "Capehart", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.194179, 38.745601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12513 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441950", "POINTID": "1102654018468", "FULLNAME": "Richards Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.192513, 39.080041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445273", "POINTID": "1102654001533", "FULLNAME": "Vicksburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.198071, 39.090596 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439121", "POINTID": "1102653990543", "FULLNAME": "Midland Junction", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.194460, 39.107263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439120", "POINTID": "1102653990536", "FULLNAME": "Midland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.191682, 39.121985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452103", "POINTID": "1102653960029", "FULLNAME": "Latta Yard", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.196126, 39.150040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292239", "FULLNAME": "Shakamak Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.189015, 39.168916 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441933", "POINTID": "1102654018460", "FULLNAME": "Rhule Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.197239, 39.444205 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010865971755", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.196330, 39.459227 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449846", "POINTID": "1102653999418", "FULLNAME": "Staunton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.188908, 39.487538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432185", "POINTID": "1102654009406", "FULLNAME": "Carter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.196405, 39.570315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440781", "POINTID": "1102654017551", "FULLNAME": "Overman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.192234, 39.811705 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438656", "POINTID": "1102653989565", "FULLNAME": "Marshall", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.187790, 39.848093 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441442", "POINTID": "1102654018017", "FULLNAME": "Poplar Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.187511, 39.863371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443159", "POINTID": "1102654019440", "FULLNAME": "Scotts Prairie Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.196118, 40.040037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435277", "POINTID": "1102653981189", "FULLNAME": "Graham", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.195005, 40.156981 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435742", "POINTID": "1102654013149", "FULLNAME": "Harman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.196397, 40.410312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046971169", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.191987, 41.161678 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450022", "POINTID": "1102654009578", "FULLNAME": "Cemetery of the Reesurrection", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.189748, 41.173647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450503", "POINTID": "1102653975594", "FULLNAME": "Demotte", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.198637, 41.195034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262916270", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.189656, 41.199462 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450503", "POINTID": "1102653975594", "FULLNAME": "Demotte", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.198637, 41.195034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137193358", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.195018, 41.323082 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102390087832", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.191295, 41.323471 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137193369", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.191137, 41.320766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12240 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047496056", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.192408, 41.375132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137221208", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.193514, 41.400493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137221227", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.193291, 41.401988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430660", "POINTID": "1102653967116", "FULLNAME": "Beatrice", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.189474, 41.426983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436938", "POINTID": "1102654014207", "FULLNAME": "Janes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.196697, 41.505036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137187137", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.193326, 41.541070 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633965749", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.192653, 41.540253 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633963229", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.196233, 41.546522 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633963133", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.195185, 41.545053 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137187113", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.187489, 41.547960 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137190634", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.195345, 41.559042 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137187098", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.187291, 41.559698 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431979", "POINTID": "1102654009185", "FULLNAME": "Calvary Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.196976, 41.573368 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137190455", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.196866, 41.567497 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137326673", "FULLNAME": "Central Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.187524, 41.570274 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137175725", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.187436, 41.582578 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137185569", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.197118, 41.588644 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137185576", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.195804, 41.586040 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137175725", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.187436, 41.582578 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137223700", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.195056, 41.596177 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137224214", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.198089, 41.621799 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8447, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137224136", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.196426, 41.624929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12657 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434218", "POINTID": "1102653977891", "FULLNAME": "Enterprise", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.181937, 37.842576 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12653 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431423", "POINTID": "1102654008231", "FULLNAME": "Boyd Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.176943, 37.883656 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441951", "POINTID": "1102654018469", "FULLNAME": "Richardson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.183332, 37.879490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12652 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431423", "POINTID": "1102654008231", "FULLNAME": "Boyd Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.176943, 37.883656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430301", "POINTID": "1102653965745", "FULLNAME": "Ash Iron Springs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.186674, 38.035180 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12633 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433380", "POINTID": "1102653975279", "FULLNAME": "de Gonia Springs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.185558, 38.055600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441406", "POINTID": "1102654018002", "FULLNAME": "Polk Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.181390, 38.097823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12618 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430303", "POINTID": "1102654006774", "FULLNAME": "Ashby Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.185837, 38.178103 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12617 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433968", "POINTID": "1102654011518", "FULLNAME": "Ebenezer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.179169, 38.188657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435841", "POINTID": "1102653982715", "FULLNAME": "Hartwell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.179727, 38.322548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440501", "POINTID": "1102654017131", "FULLNAME": "Odd Fellow Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.186395, 38.328936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431696", "POINTID": "1102654008707", "FULLNAME": "Bruster Branch Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.182229, 38.390881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432243", "POINTID": "1102653971839", "FULLNAME": "Cato", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.185563, 38.436714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438799", "POINTID": "1102654015657", "FULLNAME": "McClure Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.178064, 38.474214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081665420", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.178721, 38.598139 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12569 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430886", "POINTID": "1102654007434", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.180566, 38.602824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12565 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443867", "POINTID": "1102653998906", "FULLNAME": "South Washington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.178622, 38.634768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105631383", "FULLNAME": "Longfellow Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -87.187374, 38.666840 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12561 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442568", "POINTID": "1102654018951", "FULLNAME": "Saint Johns Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.180566, 38.676157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105575837630", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.185979, 38.804206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105558846200", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.183281, 38.805702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12535 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442991", "POINTID": "1102653997591", "FULLNAME": "Sandborn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.186679, 38.896431 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440577", "POINTID": "1102654017286", "FULLNAME": "Old Linton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.185014, 39.028098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436413", "POINTID": "1102653984193", "FULLNAME": "Hoosier", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.185848, 39.066708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103938879874", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.184869, 39.159601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431296", "POINTID": "1102653968764", "FULLNAME": "Bogle Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.184737, 39.177541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110262120287", "FULLNAME": "Staunton Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.186682, 39.489434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431086", "POINTID": "1102653968063", "FULLNAME": "Billtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.186129, 39.510038 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431520", "POINTID": "1102653969489", "FULLNAME": "Bridgeton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.177514, 39.645038 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442364", "POINTID": "1102654018729", "FULLNAME": "Rowe Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.182235, 39.771706 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292379", "FULLNAME": "Iwc Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.183597, 39.783650 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441442", "POINTID": "1102654018017", "FULLNAME": "Poplar Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.187511, 39.863371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435312", "POINTID": "1102653981300", "FULLNAME": "Grange Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.185842, 39.940039 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292203", "FULLNAME": "Wilson Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.180719, 39.974980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436216", "POINTID": "1102653983711", "FULLNAME": "Hillsboro", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.185561, 40.108925 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443984", "POINTID": "1102654020159", "FULLNAME": "Spring Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.184450, 40.105315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442293", "POINTID": "1102654018682", "FULLNAME": "Rose Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.185561, 40.113371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444129", "POINTID": "1102653999467", "FULLNAME": "Stephens Crossing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.180840, 40.160870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440529", "POINTID": "1102654017153", "FULLNAME": "Old Baptist Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.185561, 40.222534 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12367 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432553", "POINTID": "1102654009951", "FULLNAME": "Clark Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.177230, 40.319757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12363 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436724", "POINTID": "1102654014042", "FULLNAME": "Independence Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.177506, 40.347534 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12344 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102403006103", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.184684, 40.508775 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12321 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292003", "FULLNAME": "Ashby Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.186516, 40.703357 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12291 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292341", "FULLNAME": "Jasper County Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.181368, 40.947253 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445311", "POINTID": "1102654001576", "FULLNAME": "Virgie", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.180025, 41.115312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450020", "POINTID": "1102654011242", "FULLNAME": "Demotte Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.184472, 41.195624 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010865955000", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.176632, 41.206538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12240 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472782831", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.184292, 41.371455 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436641", "POINTID": "1102653984650", "FULLNAME": "Hurlburt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.176696, 41.370036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046970052", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.184297, 41.460277 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439489", "POINTID": "1102654016279", "FULLNAME": "Mosier Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.181975, 41.463091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445882", "POINTID": "1102654002681", "FULLNAME": "Wheeler", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.179199, 41.511703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504180866", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.186011, 41.538302 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633962886", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.187629, 41.545097 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137187113", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.187489, 41.547960 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633955206", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.186902, 41.552821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137193741", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.187680, 41.563346 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137187098", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.187291, 41.559698 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633950519", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.180904, 41.563838 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633954429", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.177407, 41.560974 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137326673", "FULLNAME": "Central Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.187524, 41.570274 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137175868", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.177482, 41.572282 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137175792", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.186239, 41.582648 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137175725", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.187436, 41.582578 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137326674", "FULLNAME": "Aylesworth Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.186719, 41.576773 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137326692", "FULLNAME": "City Hall", "MTFCC": "K2165" }, "geometry": { "type": "Point", "coordinates": [ -87.179180, 41.576292 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137175792", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.186239, 41.582648 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137175725", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.187436, 41.582578 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633034119", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.186824, 41.597759 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633034622", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.180588, 41.595691 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292415", "FULLNAME": "Midwest Steel Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.176420, 41.608369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137225152", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.184091, 41.628152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12650 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442984", "POINTID": "1102653997583", "FULLNAME": "Sand Ridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.168609, 37.902546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434857", "POINTID": "1102654012241", "FULLNAME": "Friendship Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.165554, 37.936711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12645 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441965", "POINTID": "1102653996418", "FULLNAME": "Richland City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.167778, 37.945323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430523", "POINTID": "1102654007069", "FULLNAME": "Barre Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.173338, 38.281715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434562", "POINTID": "1102654012011", "FULLNAME": "Flat Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.173062, 38.414493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430075", "POINTID": "1102653964460", "FULLNAME": "Algiers", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.175009, 38.487270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081665421", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.175977, 38.597763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12565 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010909919543", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.170111, 38.642522 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105037659", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.174038, 38.646144 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105022815", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.170978, 38.644642 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010909919543", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.170111, 38.642522 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445496", "POINTID": "1102654001887", "FULLNAME": "Washington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.172788, 38.659212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12561 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081668159", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.166654, 38.671619 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452185", "POINTID": "1102653987729", "FULLNAME": "Lettsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.174456, 38.718656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435723", "POINTID": "1102653952401", "FULLNAME": "Harbstreit Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.167233, 38.755602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12535 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442992", "POINTID": "1102654019287", "FULLNAME": "Sandborn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.169736, 38.896989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437969", "POINTID": "1102653988167", "FULLNAME": "Linton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.165847, 39.034763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432599", "POINTID": "1102654009984", "FULLNAME": "Clayton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.168070, 39.055876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434885", "POINTID": "1102654012265", "FULLNAME": "Frye Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.170846, 39.124486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442995", "POINTID": "1102654019288", "FULLNAME": "Sanders Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.175293, 39.231707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446474", "POINTID": "1102654022416", "FULLNAME": "Zion Gummere Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.175293, 39.345873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12479 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292090", "FULLNAME": "Turner Farms Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.170114, 39.371180 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432635", "POINTID": "1102654010015", "FULLNAME": "Clearview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.173351, 39.514206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110260888262", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.167241, 39.525927 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430706", "POINTID": "1102653967283", "FULLNAME": "Bee Ridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.169462, 39.536982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430237", "POINTID": "1102654006697", "FULLNAME": "Archer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.172238, 39.603649 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442692", "POINTID": "1102654019073", "FULLNAME": "Saint Marys Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.166128, 39.604483 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433527", "POINTID": "1102653975804", "FULLNAME": "Diamond", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.166128, 39.611427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449844", "POINTID": "1102653998716", "FULLNAME": "Snow Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.170015, 39.655595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452158", "POINTID": "1102653962443", "FULLNAME": "Sand Creek Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.166402, 39.775318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440380", "POINTID": "1102653993603", "FULLNAME": "Nyesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.174456, 39.784482 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430862", "POINTID": "1102654007417", "FULLNAME": "Bethany Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.170567, 39.847539 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12366 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442081", "POINTID": "1102653996640", "FULLNAME": "Riverside", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.166117, 40.325033 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12365 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436723", "POINTID": "1102653984819", "FULLNAME": "Independence", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.168896, 40.337535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12293 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329193395", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.170240, 40.937684 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329190191", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.167853, 40.933436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446391", "POINTID": "1102654022328", "FULLNAME": "Yeoman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.165855, 41.030036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108602538043", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.175733, 41.201335 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108602594976", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.172793, 41.198145 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010865955000", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.176632, 41.206538 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329204529", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.174505, 41.208196 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010865944452", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.174620, 41.204641 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329209551", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.170661, 41.204271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12240 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436641", "POINTID": "1102653984650", "FULLNAME": "Hurlburt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.176696, 41.370036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437528", "POINTID": "1102653986792", "FULLNAME": "Lake Eliza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.171975, 41.428924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969998", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.166171, 41.464446 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633966153", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.174424, 41.546408 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137187006", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.170106, 41.556828 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137326678", "FULLNAME": "Portage High School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.165758, 41.551942 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633952942", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.176052, 41.565953 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137223690", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.173775, 41.568357 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137176159", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.171399, 41.582317 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633977121", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.166630, 41.580872 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633040093", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.176516, 41.590299 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633040780", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.174861, 41.588963 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137192261", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.172801, 41.584712 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137223672", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.167625, 41.585896 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137175987", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.172010, 41.591712 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137176002", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.169411, 41.593278 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633103532", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.169371, 41.603008 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292415", "FULLNAME": "Midwest Steel Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.176420, 41.608369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452966", "POINTID": "1102653956407", "FULLNAME": "Burns Waterway West Pier Outer Light", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.175588, 41.634480 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434857", "POINTID": "1102654012241", "FULLNAME": "Friendship Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.165554, 37.936711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12624 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434629", "POINTID": "1102653979288", "FULLNAME": "Folsomville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.164167, 38.129215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12618 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437012", "POINTID": "1102653985476", "FULLNAME": "Jockey", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.163336, 38.178381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434875", "POINTID": "1102653980107", "FULLNAME": "Fritz Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.158892, 38.297549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444438", "POINTID": "1102654000053", "FULLNAME": "Survant", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.155281, 38.373937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110116051846", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.158932, 38.388319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12586 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446092", "POINTID": "1102654022039", "FULLNAME": "Willis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.165286, 38.454769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105022064", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.158717, 38.653605 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105631386", "FULLNAME": "Daviess County Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -87.160227, 38.659970 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105006539", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.156290, 38.664549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12561 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105038026", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.163060, 38.669761 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010910000074", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.155609, 38.670802 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436849", "POINTID": "1102654014154", "FULLNAME": "Island City Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.156679, 39.009766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435039", "POINTID": "1102654012457", "FULLNAME": "German Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.161681, 39.050875 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434317", "POINTID": "1102654011811", "FULLNAME": "Fairview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.160568, 39.065042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430282", "POINTID": "1102653965654", "FULLNAME": "Art", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.155295, 39.402816 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439524", "POINTID": "1102654016313", "FULLNAME": "Mount Calvary Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.155295, 39.415872 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435040", "POINTID": "1102654012470", "FULLNAME": "German Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.154739, 39.468094 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444989", "POINTID": "1102654001074", "FULLNAME": "Turner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.160294, 39.498372 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442952", "POINTID": "1102654019250", "FULLNAME": "Sampson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.164460, 39.575039 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441045", "POINTID": "1102653994801", "FULLNAME": "Perth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.161960, 39.593094 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441046", "POINTID": "1102654017793", "FULLNAME": "Perth Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.161405, 39.590316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452208", "POINTID": "1102654000023", "FULLNAME": "Superior", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.155571, 39.629484 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110342684157", "FULLNAME": "State Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -87.156314, 39.764816 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440197", "POINTID": "1102654016931", "FULLNAME": "Nolen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.163618, 39.978094 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446324", "POINTID": "1102654003338", "FULLNAME": "Wooley Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.165283, 40.010873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446324", "POINTID": "1102654003338", "FULLNAME": "Wooley Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.165283, 40.010873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110131934432", "FULLNAME": "Hillsboro City Hall", "MTFCC": "K2165" }, "geometry": { "type": "Point", "coordinates": [ -87.160565, 40.106269 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110131934433", "FULLNAME": "Hillsboro Post Office", "MTFCC": "K2165" }, "geometry": { "type": "Point", "coordinates": [ -87.158446, 40.106230 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12361 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430474", "POINTID": "1102653966556", "FULLNAME": "Banning Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.162507, 40.366423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435067", "POINTID": "1102653953667", "FULLNAME": "Mt Gilboa", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.159458, 40.665869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109098060445", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.156861, 40.754499 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442441", "POINTID": "1102654018818", "FULLNAME": "Sacred Heart Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.162794, 40.769088 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434716", "POINTID": "1102653979656", "FULLNAME": "Fountain Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.161772, 40.779215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12296 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439528", "POINTID": "1102654016333", "FULLNAME": "Mount Calvary Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.156408, 40.911980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12293 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445849", "POINTID": "1102654021765", "FULLNAME": "Weston Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.161410, 40.936148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449425", "POINTID": "1102653962815", "FULLNAME": "State Boulevard Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.156968, 41.095591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329200740", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.157261, 41.161573 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450024", "POINTID": "1102653962523", "FULLNAME": "Shady Pines Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.155858, 41.168091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450440", "POINTID": "1102653985933", "FULLNAME": "Kersey", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.156413, 41.194203 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441465", "POINTID": "1102653995454", "FULLNAME": "Porter Xroad", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.161697, 41.399202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438395", "POINTID": "1102654015297", "FULLNAME": "Ludington Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.161418, 41.405036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047436208", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.156706, 41.439381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969878", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.164610, 41.455861 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969954", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.164055, 41.464015 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969786", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.157255, 41.466458 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969793", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.154908, 41.461893 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969869", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.154450, 41.460042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443195", "POINTID": "1102653997986", "FULLNAME": "Sedley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.157553, 41.488575 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633970307", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.164213, 41.564683 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633970463", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.158910, 41.562369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137194373", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.165015, 41.573619 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137194440", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.162421, 41.569567 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633977187", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.164307, 41.580641 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633976707", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.159240, 41.575060 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633231723", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.164556, 41.590939 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137185632", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.160050, 41.588538 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633244380", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.157859, 41.589978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633245889", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.160517, 41.597523 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137185643", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.162974, 41.600403 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446119", "POINTID": "1102654003020", "FULLNAME": "Wilson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.159200, 41.619758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435566", "POINTID": "1102654013014", "FULLNAME": "Gwaltney Memorial Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.144166, 37.999213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430657", "POINTID": "1102654007188", "FULLNAME": "Beasley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.150834, 38.030046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444123", "POINTID": "1102653999461", "FULLNAME": "Stendal", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.144445, 38.266714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432974", "POINTID": "1102654010611", "FULLNAME": "Corn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.150282, 38.348104 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445976", "POINTID": "1102654002794", "FULLNAME": "Whiteoak", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.146395, 38.409493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12579 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452178", "POINTID": "1102653983441", "FULLNAME": "Highbank Town", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.150284, 38.514491 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12574 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433242", "POINTID": "1102653974741", "FULLNAME": "Cumback", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.147508, 38.558657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081668371", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.149638, 38.646910 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015481863146", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.144944, 38.657652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105038002", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.151540, 38.667969 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12561 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443205", "POINTID": "1102653954588", "FULLNAME": "Sefert Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.146677, 38.675047 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441225", "POINTID": "1102654017895", "FULLNAME": "Plainville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.153345, 38.797824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441224", "POINTID": "1102653995122", "FULLNAME": "Plainville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.152234, 38.806156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436848", "POINTID": "1102653985109", "FULLNAME": "Island City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.147790, 39.009209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441826", "POINTID": "1102653996182", "FULLNAME": "Redcuff Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.147237, 39.155040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436555", "POINTID": "1102653984389", "FULLNAME": "Howesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.146958, 39.176986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435040", "POINTID": "1102654012470", "FULLNAME": "German Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.154739, 39.468094 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110262120305", "FULLNAME": "Berea Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -87.144172, 39.504113 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444400", "POINTID": "1102654020579", "FULLNAME": "Summit Lawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.145016, 39.500872 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110262120305", "FULLNAME": "Berea Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -87.144172, 39.504113 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433014", "POINTID": "1102654010704", "FULLNAME": "Cottage Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.151684, 39.518650 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110262120286", "FULLNAME": "Rock Run Church", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.144504, 39.572136 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435873", "POINTID": "1102654013250", "FULLNAME": "Hatfield Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.145014, 39.720317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431707", "POINTID": "1102654008740", "FULLNAME": "Buchanan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.145011, 39.808651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431707", "POINTID": "1102654008740", "FULLNAME": "Buchanan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.145011, 39.808651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430860", "POINTID": "1102653967849", "FULLNAME": "Bethany", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.147232, 39.854207 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445387", "POINTID": "1102654001761", "FULLNAME": "Wallace", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.148340, 39.986428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438973", "POINTID": "1102653990215", "FULLNAME": "Mellott", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.147782, 40.165314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440152", "POINTID": "1102653993102", "FULLNAME": "Newtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.147782, 40.204202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440153", "POINTID": "1102654016840", "FULLNAME": "Newtown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.153337, 40.211146 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440152", "POINTID": "1102653993102", "FULLNAME": "Newtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.147782, 40.204202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435421", "POINTID": "1102654012856", "FULLNAME": "Greenbay Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.149450, 40.257535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12366 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438768", "POINTID": "1102654015612", "FULLNAME": "Maysville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.150561, 40.326700 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12365 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438769", "POINTID": "1102653989873", "FULLNAME": "Maysville Crossing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.147229, 40.330867 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434644", "POINTID": "1102653979334", "FULLNAME": "Foresman", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.150550, 40.499719 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12336 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103355609471", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.144928, 40.572703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441891", "POINTID": "1102653996297", "FULLNAME": "Remington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.150850, 40.760870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441892", "POINTID": "1102654018403", "FULLNAME": "Remington Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.147530, 40.769230 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12294 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010865947689", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.153549, 40.927779 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12293 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441902", "POINTID": "1102653996325", "FULLNAME": "Rensselaer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.150853, 40.936703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12291 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329171174", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.149359, 40.954100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12289 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446690", "POINTID": "1102653993353", "FULLNAME": "North Marion", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.150021, 40.970868 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329180751", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.147219, 40.971087 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12280 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430034", "POINTID": "1102653964258", "FULLNAME": "Aix", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.151411, 41.041424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329174454", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.149611, 41.178767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329174454", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.149611, 41.178767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137326694", "FULLNAME": "Porter Township Ofc", "MTFCC": "K2165" }, "geometry": { "type": "Point", "coordinates": [ -87.153632, 41.390729 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047507026", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.149777, 41.432841 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969710", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.150751, 41.450732 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969876", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.148887, 41.459280 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969776", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.150373, 41.458952 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969713", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.149708, 41.454307 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969714", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.147696, 41.454640 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969784", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.153683, 41.464960 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969839", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.146502, 41.462379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969802", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.153640, 41.469565 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016953625571", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.148342, 41.469601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137216923", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.151328, 41.579006 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137179236", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.148131, 41.581101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137192255", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.154705, 41.590538 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046963802", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.151974, 41.590008 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633247326", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.154742, 41.593451 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137191470", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.151548, 41.596317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450009", "POINTID": "1102653961950", "FULLNAME": "Port of Indiana", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.153879, 41.638988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12655 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430067", "POINTID": "1102654006484", "FULLNAME": "Alexandria Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.142498, 37.858657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439126", "POINTID": "1102653990550", "FULLNAME": "Midway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.138332, 37.999490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12622 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442522", "POINTID": "1102654018882", "FULLNAME": "Saint Clair Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.142780, 38.147547 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436001", "POINTID": "1102653983149", "FULLNAME": "Hemenway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.134446, 38.203938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435842", "POINTID": "1102653982737", "FULLNAME": "Hartwell Junction", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.140838, 38.360604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430601", "POINTID": "1102654007153", "FULLNAME": "Beadles Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.138617, 38.400604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435918", "POINTID": "1102654013279", "FULLNAME": "Hayes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.136948, 38.412269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438226", "POINTID": "1102654015165", "FULLNAME": "Logan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.133620, 38.513381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105037924", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.140022, 38.658169 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105011319", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.138780, 38.663793 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438599", "POINTID": "1102653989362", "FULLNAME": "Marco", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.142232, 38.935877 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438600", "POINTID": "1102654015457", "FULLNAME": "Marco Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.132788, 38.936156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446873", "POINTID": "1102653999153", "FULLNAME": "Sponsler", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.141436, 39.003540 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110109568456", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.139979, 39.035503 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444645", "POINTID": "1102654020830", "FULLNAME": "Terhune Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.136401, 39.090319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262888848", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.141028, 39.527603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262889074", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.140400, 39.530611 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444303", "POINTID": "1102654020526", "FULLNAME": "Stunkard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.134738, 39.546428 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443250", "POINTID": "1102653998093", "FULLNAME": "Shady Lane", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.133628, 39.545595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444303", "POINTID": "1102654020526", "FULLNAME": "Stunkard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.134738, 39.546428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452221", "POINTID": "1102654002877", "FULLNAME": "Wickville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.143072, 39.595316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440680", "POINTID": "1102654017479", "FULLNAME": "Orchard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.133625, 39.604762 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443711", "POINTID": "1102653998673", "FULLNAME": "Smockville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.133070, 39.626150 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437137", "POINTID": "1102653985672", "FULLNAME": "Judson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.134454, 39.813096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436270", "POINTID": "1102654013690", "FULLNAME": "Hodson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.138024, 40.196263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445305", "POINTID": "1102654001565", "FULLNAME": "Vine", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.135006, 40.295035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12293 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292294", "FULLNAME": "Jasper County Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.138155, 40.934997 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449424", "POINTID": "1102653958530", "FULLNAME": "Haa-Guar Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.134744, 41.036146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433781", "POINTID": "1102654011447", "FULLNAME": "Dunkard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.135023, 41.049203 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450021", "POINTID": "1102654015321", "FULLNAME": "Lutheran Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.136412, 41.131702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450447", "POINTID": "1102653986431", "FULLNAME": "Kniman", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.137630, 41.144198 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137180641", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.142653, 41.428713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137217851", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.135130, 41.442443 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072908618", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.142581, 41.450451 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072908619", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.143659, 41.451874 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969718", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.138373, 41.459236 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969719", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.139869, 41.457215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969838", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.143091, 41.464496 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969741", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.140996, 41.463226 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969735", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.136458, 41.459571 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104742035159", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.142576, 41.472547 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431115", "POINTID": "1102654007688", "FULLNAME": "Blachly Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.136696, 41.471148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047397398", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.138813, 41.513297 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443821", "POINTID": "1102653998793", "FULLNAME": "South Haven", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.137254, 41.541980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047743839", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.141505, 41.552689 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450135", "POINTID": "1102653962256", "FULLNAME": "Robbinhurst Golf Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.138365, 41.561424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137222569", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.140154, 41.570159 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436921", "POINTID": "1102654014198", "FULLNAME": "James Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.133644, 41.571703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438809", "POINTID": "1102653989928", "FULLNAME": "McCool", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.143643, 41.580036 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137179543", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.142517, 41.578788 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046960130", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.139223, 41.576276 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137190719", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.141342, 41.584365 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633288339", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.142047, 41.596307 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137186412", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.136128, 41.594197 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449527", "POINTID": "1102653998112", "FULLNAME": "Shady Side", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.143088, 41.616702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8452, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449809", "POINTID": "1102653970773", "FULLNAME": "Burns Harbor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.133365, 41.625869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12630 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433859", "POINTID": "1102653976685", "FULLNAME": "Eames", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.131667, 38.079212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432209", "POINTID": "1102654009442", "FULLNAME": "Case Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.124728, 38.508936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12568 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081665902", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.125538, 38.614771 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440121", "POINTID": "1102654016791", "FULLNAME": "New Veale Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.123342, 38.624213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12566 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048495265", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.131482, 38.633460 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12558 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292083", "FULLNAME": "Daviess County Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.129731, 38.700422 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262911613", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.131595, 39.041336 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292191", "FULLNAME": "Greene County General Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.129567, 39.040147 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110109557365", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.129892, 39.062980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438240", "POINTID": "1102653988489", "FULLNAME": "Lone Tree", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.128902, 39.125874 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452131", "POINTID": "1102653992337", "FULLNAME": "New Brunswick", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.121402, 39.205873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443549", "POINTID": "1102654019851", "FULLNAME": "Sink Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.123626, 39.245873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438550", "POINTID": "1102654015408", "FULLNAME": "Maple Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.127236, 39.293097 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438549", "POINTID": "1102654015409", "FULLNAME": "Maple Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.124736, 39.293097 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435461", "POINTID": "1102654012891", "FULLNAME": "Greenwell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.121402, 39.299762 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434035", "POINTID": "1102653977227", "FULLNAME": "Eel River", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.123626, 39.323372 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442932", "POINTID": "1102653997527", "FULLNAME": "Saline City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.132238, 39.365318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110260887764", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.130152, 39.500802 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431088", "POINTID": "1102653968076", "FULLNAME": "Billville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.125573, 39.503650 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110260887975", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.126276, 39.509221 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431462", "POINTID": "1102653969254", "FULLNAME": "Brazil", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.125015, 39.523651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435093", "POINTID": "1102654012524", "FULLNAME": "Girton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.122794, 39.562818 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452210", "POINTID": "1102653994915", "FULLNAME": "Piattsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.125895, 39.704481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452211", "POINTID": "1102653992439", "FULLNAME": "New Discovery", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.130567, 39.731707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452159", "POINTID": "1102653994996", "FULLNAME": "Pin Hook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.127233, 39.815041 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430501", "POINTID": "1102654007032", "FULLNAME": "Barnes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.127512, 39.809762 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433347", "POINTID": "1102654011155", "FULLNAME": "Davis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.123065, 40.405588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12299 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292329", "FULLNAME": "Gilmore Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.122352, 40.886968 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12296 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446689", "POINTID": "1102653998818", "FULLNAME": "South Marion", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.126407, 40.912538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441588", "POINTID": "1102654018146", "FULLNAME": "Price Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.128910, 41.016425 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329170294", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.125391, 41.180713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329163025", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.128038, 41.233024 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329212717", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.124318, 41.234115 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432981", "POINTID": "1102654010634", "FULLNAME": "Cornell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.130321, 41.320220 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12242 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449621", "POINTID": "1102653968893", "FULLNAME": "Boone Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.129473, 41.354758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434991", "POINTID": "1102653980408", "FULLNAME": "Gates Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.123918, 41.420314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137221274", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.130814, 41.442326 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137193896", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.121625, 41.442933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047388917", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.128955, 41.537820 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047388915", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.126523, 41.537747 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047389096", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.130195, 41.544112 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442137", "POINTID": "1102654018634", "FULLNAME": "Robbins Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.132255, 41.560870 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435245", "POINTID": "1102654012672", "FULLNAME": "Gossett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.122253, 41.563926 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046957980", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.128148, 41.570886 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633983027", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.128760, 41.581484 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504180735", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.125348, 41.581544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633313926", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.128223, 41.585288 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433138", "POINTID": "1102653974477", "FULLNAME": "Crocker", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.122274, 41.588103 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438944", "POINTID": "1102653990090", "FULLNAME": "Meadowbrook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.121976, 41.615591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438944", "POINTID": "1102653990090", "FULLNAME": "Meadowbrook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.121976, 41.615591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137326670", "FULLNAME": "Burns Harbor Plant Dock", "MTFCC": "K1225" }, "geometry": { "type": "Point", "coordinates": [ -87.127148, 41.643380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12655 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440930", "POINTID": "1102653994556", "FULLNAME": "Patronville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.110553, 37.858380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441321", "POINTID": "1102654017942", "FULLNAME": "Pleasant Valley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.118331, 37.994212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12630 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444641", "POINTID": "1102654000454", "FULLNAME": "Tennyson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.118331, 38.082269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441407", "POINTID": "1102654018003", "FULLNAME": "Polk Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.118331, 38.098936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434974", "POINTID": "1102654012398", "FULLNAME": "Garrison Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.119165, 38.107271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12625 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438194", "POINTID": "1102653988340", "FULLNAME": "Loafers Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.118055, 38.125602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12623 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445010", "POINTID": "1102654021134", "FULLNAME": "Twin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.110834, 38.139770 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441138", "POINTID": "1102653994975", "FULLNAME": "Pikeville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.111392, 38.321992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12581 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436858", "POINTID": "1102653985134", "FULLNAME": "Iva", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.119450, 38.502826 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432987", "POINTID": "1102654010659", "FULLNAME": "Cornettsville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.117231, 38.759768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436707", "POINTID": "1102653984793", "FULLNAME": "Ilene", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.112511, 38.937543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430740", "POINTID": "1102653967364", "FULLNAME": "Beehunter", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.121123, 38.956155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431300", "POINTID": "1102654007948", "FULLNAME": "Bohley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.114179, 39.161429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431671", "POINTID": "1102653970153", "FULLNAME": "Brunswick", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.120013, 39.196985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452131", "POINTID": "1102653992337", "FULLNAME": "New Brunswick", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.121402, 39.205873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439112", "POINTID": "1102653990485", "FULLNAME": "Middlebury", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.118903, 39.264206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292069", "FULLNAME": "Booe Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.121257, 39.272834 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435233", "POINTID": "1102654012641", "FULLNAME": "Goshorn Memorial Pk", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.118903, 39.282262 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432585", "POINTID": "1102653972969", "FULLNAME": "Clay City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.112792, 39.276706 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435461", "POINTID": "1102654012891", "FULLNAME": "Greenwell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.121402, 39.299762 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435778", "POINTID": "1102654013176", "FULLNAME": "Harris Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.113071, 39.343373 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441539", "POINTID": "1102653995610", "FULLNAME": "Prairie City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.113350, 39.445595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110260849864", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.119957, 39.507073 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015922302929", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.115185, 39.509848 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110260863654", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.114552, 39.520916 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292061", "FULLNAME": "St Vincent Clay Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.111945, 39.527923 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110260753106", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.112420, 39.521342 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110260863654", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.114552, 39.520916 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440798", "POINTID": "1102654017564", "FULLNAME": "Owens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.118350, 39.554205 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432127", "POINTID": "1102653971493", "FULLNAME": "Cardonia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.118905, 39.561707 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430833", "POINTID": "1102653967765", "FULLNAME": "Benwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.114182, 39.561151 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441384", "POINTID": "1102654017986", "FULLNAME": "Poff Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.110572, 39.573929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440982", "POINTID": "1102654017741", "FULLNAME": "Pell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.111961, 39.582818 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441432", "POINTID": "1102653995372", "FULLNAME": "Pontiac", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.118626, 39.590318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432123", "POINTID": "1102653971455", "FULLNAME": "Carbon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.118626, 39.597818 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431170", "POINTID": "1102654007756", "FULLNAME": "Blake Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.112513, 39.719762 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435552", "POINTID": "1102653981919", "FULLNAME": "Guion", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.111398, 39.842817 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438341", "POINTID": "1102654015195", "FULLNAME": "Lough Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.121121, 39.872263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110131711861", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.114034, 40.014407 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12388 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443447", "POINTID": "1102654019733", "FULLNAME": "Short Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.112784, 40.142259 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441703", "POINTID": "1102654018234", "FULLNAME": "Quirk Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.110837, 40.204757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435401", "POINTID": "1102653981513", "FULLNAME": "Green Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.111119, 40.413645 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435401", "POINTID": "1102653981513", "FULLNAME": "Green Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.111119, 40.413645 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12280 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441565", "POINTID": "1102654018096", "FULLNAME": "Prater Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.118632, 41.038647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449822", "POINTID": "1102654014626", "FULLNAME": "Kniman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.112800, 41.143647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329174157", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.116212, 41.189157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329173969", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.118261, 41.195408 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329174063", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.115086, 41.195519 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430366", "POINTID": "1102653966187", "FULLNAME": "Aylesworth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.113358, 41.318369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439030", "POINTID": "1102654015972", "FULLNAME": "Merriman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.113361, 41.366147 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311141939", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.120818, 41.441122 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02038156", "POINTID": "1102653963020", "FULLNAME": "The Course at Aberdeen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.111695, 41.438926 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137193896", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.121625, 41.442933 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047852140", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.117285, 41.448561 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137182825", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.110577, 41.443058 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047488855", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.112398, 41.468608 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072993071", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.118042, 41.482081 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471630756", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.115155, 41.482087 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137195977", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.112505, 41.489009 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047436962", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.112020, 41.515141 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047436589", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.113712, 41.542142 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013873339875", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.120482, 41.608117 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12659 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441632", "POINTID": "1102653995782", "FULLNAME": "Pueblo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.110274, 37.826156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12655 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440930", "POINTID": "1102653994556", "FULLNAME": "Patronville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.110553, 37.858380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12654 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452235", "POINTID": "1102653999105", "FULLNAME": "Spencer County Farm", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.106940, 37.872823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12650 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441904", "POINTID": "1102653996345", "FULLNAME": "Reo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.109442, 37.901434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437534", "POINTID": "1102653986842", "FULLNAME": "Lake Mill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.109719, 37.937824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437264", "POINTID": "1102654014451", "FULLNAME": "Kerr Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.108332, 37.959212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443215", "POINTID": "1102653998013", "FULLNAME": "Selvin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.106111, 38.204214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444168", "POINTID": "1102654020390", "FULLNAME": "Stillwell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.102225, 38.318659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445242", "POINTID": "1102654001432", "FULLNAME": "Velpen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.101948, 38.355325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12575 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433967", "POINTID": "1102654011519", "FULLNAME": "Ebenezer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.109174, 38.550882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12574 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433939", "POINTID": "1102654011511", "FULLNAME": "East Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.105006, 38.557548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432986", "POINTID": "1102653973895", "FULLNAME": "Cornettsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.110011, 38.756712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445664", "POINTID": "1102654021637", "FULLNAME": "Wells Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.107787, 38.786156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431891", "POINTID": "1102653970860", "FULLNAME": "Bushrod", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.108901, 38.968931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452276", "POINTID": "1102653963355", "FULLNAME": "Wabash Camp Ground", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.103348, 39.290595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12477 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110260874584", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.109778, 39.385457 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449615", "POINTID": "1102653965756", "FULLNAME": "Ashboro", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.105848, 39.398928 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446435", "POINTID": "1102654022396", "FULLNAME": "Zenor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.107570, 39.445316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436417", "POINTID": "1102653984219", "FULLNAME": "Hoosierville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.108351, 39.475040 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292082", "FULLNAME": "Brazil Clay County Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.099709, 39.476732 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110260893073", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.104038, 39.520107 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110260893963", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.107098, 39.524905 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110260760697", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.105054, 39.524859 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435746", "POINTID": "1102653982487", "FULLNAME": "Harmony", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.105848, 39.536707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441384", "POINTID": "1102654017986", "FULLNAME": "Poff Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.110572, 39.573929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437775", "POINTID": "1102653987599", "FULLNAME": "Lena", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.107238, 39.605039 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438533", "POINTID": "1102653989214", "FULLNAME": "Mansfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.102235, 39.676430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430781", "POINTID": "1102653967523", "FULLNAME": "Bellmore", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.105290, 39.759208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437611", "POINTID": "1102654014791", "FULLNAME": "Lane Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.105846, 39.786152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431658", "POINTID": "1102654008619", "FULLNAME": "Bruin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.105288, 39.840317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431926", "POINTID": "1102653970976", "FULLNAME": "Byron", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.105564, 39.903650 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452151", "POINTID": "1102653966515", "FULLNAME": "Banner Mills", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.101119, 39.932818 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440970", "POINTID": "1102653950462", "FULLNAME": "Pedestal Rock", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.100285, 39.951152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12383 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440450", "POINTID": "1102654017095", "FULLNAME": "Oak Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.105561, 40.185869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12367 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442149", "POINTID": "1102653996764", "FULLNAME": "Roberts", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.102227, 40.316146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12336 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292015", "FULLNAME": "Durflinger Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.102348, 40.573075 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12285 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443664", "POINTID": "1102654019948", "FULLNAME": "Smith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.103909, 40.997814 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12284 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329178554", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.102117, 41.007421 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329189868", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.104258, 41.166201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047454824", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.110338, 41.431597 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434584", "POINTID": "1102654012033", "FULLNAME": "Fleming Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.105014, 41.428089 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047852077", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.110201, 41.435443 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137182825", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.110577, 41.443058 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047454662", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.101063, 41.448513 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444519", "POINTID": "1102654000163", "FULLNAME": "Sylvan Manor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.107530, 41.458926 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137181784", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.107439, 41.451253 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047454661", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.100953, 41.454027 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047454666", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.108319, 41.468855 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047438109", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.102597, 41.499086 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047438111", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.100130, 41.493656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047436960", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.110228, 41.517288 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437304", "POINTID": "1102654014527", "FULLNAME": "Kimball Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.100030, 41.522537 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450075", "POINTID": "1102653956426", "FULLNAME": "Butternut Springs Girl Scout Camp", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.106420, 41.525869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047436773", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.107806, 41.536573 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047436590", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.108935, 41.542451 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430375", "POINTID": "1102653966228", "FULLNAME": "Babcock", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.105132, 41.572553 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137223106", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.101283, 41.598036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431876", "POINTID": "1102654008945", "FULLNAME": "Burstrom Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.100588, 41.630314 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450011", "POINTID": "1102653958246", "FULLNAME": "Goodfellow Camp", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.100030, 41.626703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12656 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440402", "POINTID": "1102654017040", "FULLNAME": "Oak Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.090828, 37.851158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12651 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117943650", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.097244, 37.897333 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117943672", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.093137, 37.897242 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435582", "POINTID": "1102654013028", "FULLNAME": "Hackleman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.091107, 37.966713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440184", "POINTID": "1102653953788", "FULLNAME": "Nix Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.089165, 37.983380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434522", "POINTID": "1102653952045", "FULLNAME": "Fisher Knobs", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.089996, 37.995603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431199", "POINTID": "1102653968412", "FULLNAME": "Bloomfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.096388, 38.024492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12622 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431650", "POINTID": "1102654008602", "FULLNAME": "Bruce Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.090554, 38.146714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12621 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435983", "POINTID": "1102653983072", "FULLNAME": "Heilman", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.090278, 38.157549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430356", "POINTID": "1102654006818", "FULLNAME": "Avery Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.089165, 38.168937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12618 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436761", "POINTID": "1102653959088", "FULLNAME": "Indian Fort", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.096667, 38.184494 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445423", "POINTID": "1102654021487", "FULLNAME": "Walnut Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.096946, 38.357548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445964", "POINTID": "1102654002780", "FULLNAME": "White Sulphur Springs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.091946, 38.385604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12586 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440760", "POINTID": "1102653994297", "FULLNAME": "Otwell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.092225, 38.454769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12585 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432400", "POINTID": "1102654009704", "FULLNAME": "Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.091394, 38.466436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439731", "POINTID": "1102654016551", "FULLNAME": "Mount Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.090010, 38.975877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445347", "POINTID": "1102654021403", "FULLNAME": "Waggoner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.090010, 39.039486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431915", "POINTID": "1102654009042", "FULLNAME": "Buzan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.093067, 39.067820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452126", "POINTID": "1102653975063", "FULLNAME": "Danville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.091126, 39.264484 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12477 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435484", "POINTID": "1102654012921", "FULLNAME": "Gremes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.091404, 39.385873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292082", "FULLNAME": "Brazil Clay County Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.099709, 39.476732 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441441", "POINTID": "1102654018016", "FULLNAME": "Poplar Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.098072, 39.504206 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445372", "POINTID": "1102654021449", "FULLNAME": "Walker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.091404, 39.498372 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441441", "POINTID": "1102654018016", "FULLNAME": "Poplar Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.098072, 39.504206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449071", "POINTID": "1102653976038", "FULLNAME": "Donaldsonville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.098904, 39.529206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110262120311", "FULLNAME": "Mount Lebanon Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -87.089404, 39.561922 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047045558", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.090605, 39.732647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047045558", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.090605, 39.732647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431881", "POINTID": "1102654009002", "FULLNAME": "Burton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.089733, 39.766707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443232", "POINTID": "1102654019502", "FULLNAME": "Seybold Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.095009, 39.835319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102617429338", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.094151, 39.898424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12361 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431141", "POINTID": "1102653968229", "FULLNAME": "Black Rock", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.096951, 40.367811 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12357 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052088498", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.091128, 40.398756 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441427", "POINTID": "1102654018013", "FULLNAME": "Pond Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.096675, 40.467533 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103940311837", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.099121, 40.492611 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296345286", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.089245, 40.493368 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12287 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441868", "POINTID": "1102654018363", "FULLNAME": "Rees Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.096131, 40.980870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137179084", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.095951, 41.439917 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504303635", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.095774, 41.448509 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445835", "POINTID": "1102654002535", "FULLNAME": "Westhill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.097252, 41.464759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02038153", "POINTID": "1102653956994", "FULLNAME": "Creekside Park Golf Course Nd Training Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.090307, 41.474481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137217727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.092021, 41.491197 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137224081", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.089653, 41.486025 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047437947", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.094256, 41.496587 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137217700", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.093582, 41.494942 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047706037", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.094030, 41.507973 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137223552", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.098901, 41.509845 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137224489", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.089744, 41.509979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137186729", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.093955, 41.517378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047522183", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.099360, 41.544766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137223544", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.097225, 41.566074 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137223528", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.098287, 41.569991 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137223544", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.097225, 41.566074 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046607201", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.096825, 41.604116 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452911", "POINTID": "1102654006876", "FULLNAME": "Bailly Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.090865, 41.632814 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12658 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00517047", "POINTID": "1102662747354", "FULLNAME": "Larkins Ferry", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.083328, 37.833380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444096", "POINTID": "1102654020284", "FULLNAME": "Stateler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.083886, 37.955879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12626 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432550", "POINTID": "1102654009936", "FULLNAME": "Clark Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.082497, 38.116993 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12586 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436676", "POINTID": "1102654014043", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.083336, 38.454769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431138", "POINTID": "1102653968180", "FULLNAME": "Black Oak", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.081118, 38.662547 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434139", "POINTID": "1102653977647", "FULLNAME": "Elnora", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.085844, 38.878378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438441", "POINTID": "1102653988889", "FULLNAME": "Lyons", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.082231, 38.989211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433770", "POINTID": "1102654011439", "FULLNAME": "Duncan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.088347, 39.205597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452222", "POINTID": "1102653990114", "FULLNAME": "Mechanicsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.087515, 39.600873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452213", "POINTID": "1102653988960", "FULLNAME": "Madalline", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.080568, 39.732264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452153", "POINTID": "1102653994482", "FULLNAME": "Parkeville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.084455, 39.816985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452153", "POINTID": "1102653994482", "FULLNAME": "Parkeville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.084455, 39.816985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441716", "POINTID": "1102654018239", "FULLNAME": "Raccoon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.086399, 39.831152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452410", "POINTID": "1102653963518", "FULLNAME": "Waveland Conservation Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.086955, 39.868096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12368 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438632", "POINTID": "1102654015495", "FULLNAME": "Marks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.079174, 40.310035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12296 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433139", "POINTID": "1102654010890", "FULLNAME": "Crockett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.081405, 40.907259 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12287 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435682", "POINTID": "1102654013110", "FULLNAME": "Hankle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.084742, 40.987258 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329172112", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.086236, 41.208231 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137179079", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.087435, 41.441222 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137179090", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.083052, 41.440511 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432927", "POINTID": "1102653973808", "FULLNAME": "Coolwood Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.087250, 41.459203 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11014058833299", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.088071, 41.455867 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11014058834596", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.082561, 41.455189 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438605", "POINTID": "1102653989411", "FULLNAME": "Marian Manor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.087529, 41.466982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047437931", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.086440, 41.491811 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047731028", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.078895, 41.490684 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047437929", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.085962, 41.498152 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047735622", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.084423, 41.492010 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047706035", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.086531, 41.508143 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104762004129", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.079761, 41.507029 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104762004090", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.077629, 41.504948 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137186825", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.086255, 41.516589 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047703201", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.078342, 41.510925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047485504", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.084664, 41.524867 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047485499", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.077433, 41.525070 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047485503", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.083715, 41.527698 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047485498", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.079316, 41.527718 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047485499", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.077433, 41.525070 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047435505", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.087451, 41.563344 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047435506", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.082194, 41.561462 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047435504", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.084106, 41.566824 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047435503", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.082261, 41.566642 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137222936", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.079219, 41.599035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047507832", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.085823, 41.604785 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445830", "POINTID": "1102654002506", "FULLNAME": "Western Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.083642, 41.599202 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137222931", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.079930, 41.600419 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137185446", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.078372, 41.610756 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137185337", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.083943, 41.619629 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137326683", "FULLNAME": "Yost Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.077838, 41.618123 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433776", "POINTID": "1102653976376", "FULLNAME": "Dune Acres Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.084753, 41.637258 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137185418", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.079048, 41.635486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137326696", "FULLNAME": "Town Marshall's Office", "MTFCC": "K2165" }, "geometry": { "type": "Point", "coordinates": [ -87.085898, 41.643889 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433775", "POINTID": "1102653976369", "FULLNAME": "Dune Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.085866, 41.649481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12658 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430026", "POINTID": "1102653964240", "FULLNAME": "Africa", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.072774, 37.840324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12657 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430026", "POINTID": "1102653964240", "FULLNAME": "Africa", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.072774, 37.840324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12651 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110118192037", "FULLNAME": "County Ambulance Sta", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -87.074684, 37.895064 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12649 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443516", "POINTID": "1102653998467", "FULLNAME": "Silverdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.071384, 37.915880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432709", "POINTID": "1102653951400", "FULLNAME": "Coal Knobs", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.070829, 37.943658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438818", "POINTID": "1102654015683", "FULLNAME": "McCoy Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.074718, 37.961157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446752", "POINTID": "1102653994948", "FULLNAME": "Pigeon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.066664, 38.100048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446752", "POINTID": "1102653994948", "FULLNAME": "Pigeon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.066664, 38.100048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446487", "POINTID": "1102654003659", "FULLNAME": "Zoar", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.073056, 38.269216 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942554013", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.068675, 38.296345 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442062", "POINTID": "1102654018554", "FULLNAME": "Risley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.072224, 38.349217 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12577 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436577", "POINTID": "1102653984506", "FULLNAME": "Hudsonville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.072785, 38.538937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452512", "POINTID": "1102653980850", "FULLNAME": "Glendale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.077229, 38.568104 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12544 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048513313", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.070990, 38.816589 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105575841059", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.070046, 38.882001 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443054", "POINTID": "1102654019338", "FULLNAME": "Scafford Prairie Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.067788, 39.125876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12493 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430536", "POINTID": "1102653966766", "FULLNAME": "Barrick Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.073345, 39.256152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437876", "POINTID": "1102654014976", "FULLNAME": "Liechty Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.072235, 39.283929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432753", "POINTID": "1102654010261", "FULLNAME": "Cole Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.072514, 39.321152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432336", "POINTID": "1102653972113", "FULLNAME": "Center Pt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.077237, 39.416985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437627", "POINTID": "1102653987219", "FULLNAME": "Lap Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.071682, 39.430873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110260873935", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.068469, 39.436862 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437181", "POINTID": "1102654014367", "FULLNAME": "Kealber Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.066683, 39.445595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439189", "POINTID": "1102654016086", "FULLNAME": "Miller Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.073072, 39.492539 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110262120307", "FULLNAME": "Canaan Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -87.069072, 39.561866 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452223", "POINTID": "1102653971096", "FULLNAME": "Calcutta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.069459, 39.604209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439392", "POINTID": "1102654016197", "FULLNAME": "Moore Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.076958, 39.683651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434459", "POINTID": "1102653978763", "FULLNAME": "Ferndale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.066972, 39.707251 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438663", "POINTID": "1102654015509", "FULLNAME": "Martin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.073624, 39.702263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434459", "POINTID": "1102653978763", "FULLNAME": "Ferndale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.066972, 39.707251 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438534", "POINTID": "1102653960232", "FULLNAME": "Mansfield Ramp", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.075290, 39.718652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452076", "POINTID": "1102653962146", "FULLNAME": "Raccoon Ramp", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.076958, 39.730873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449670", "POINTID": "1102653984052", "FULLNAME": "Hollandsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.072235, 39.760319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439605", "POINTID": "1102654016440", "FULLNAME": "Mount Moriah Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.075011, 39.780319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944708162", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.075303, 39.937133 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440609", "POINTID": "1102654017366", "FULLNAME": "Old Turkey Run Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.073616, 40.156147 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441271", "POINTID": "1102654017917", "FULLNAME": "Pleasant Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.073589, 40.167130 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446183", "POINTID": "1102654003098", "FULLNAME": "Wingate", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.072782, 40.172258 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438968", "POINTID": "1102654015902", "FULLNAME": "Meharry Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.072506, 40.204202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438968", "POINTID": "1102654015902", "FULLNAME": "Meharry Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.072506, 40.204202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12377 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445888", "POINTID": "1102654021805", "FULLNAME": "Wheeler Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.075837, 40.233647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440511", "POINTID": "1102653993810", "FULLNAME": "Odell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.074171, 40.287812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440511", "POINTID": "1102653993810", "FULLNAME": "Odell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.074171, 40.287812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12357 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110138036481", "FULLNAME": "Coounty Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -87.077087, 40.399873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081509889", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.072404, 40.414015 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292317", "FULLNAME": "Culp Farms Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.067053, 40.866929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12293 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449713", "POINTID": "1102653995227", "FULLNAME": "Pleasant Ridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.074185, 40.933925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446692", "POINTID": "1102653987354", "FULLNAME": "Laura", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.066688, 41.100037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047464844", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.066693, 41.310338 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137189380", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.069974, 41.426271 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137183353", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.070797, 41.425775 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137189380", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.069974, 41.426271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439002", "POINTID": "1102654015921", "FULLNAME": "Memorial Park Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.070636, 41.452045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02038154", "POINTID": "1102653957626", "FULLNAME": "Elden Kuehl Pollution Control Facility", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.074751, 41.467259 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450224", "POINTID": "1102653957981", "FULLNAME": "Forest Park Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.076430, 41.483927 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137179127", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.076164, 41.486033 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479615", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.073442, 41.498070 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047730650", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.070647, 41.497268 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137184081", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.066565, 41.498355 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104762004090", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.077629, 41.504948 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047485499", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.077433, 41.525070 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047695879", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.069561, 41.518473 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047485499", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.077433, 41.525070 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047545358", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.070709, 41.530548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047514721", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.069625, 41.557711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137195622", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.074869, 41.560137 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504131067", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.074214, 41.583984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718062944", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.073165, 41.597707 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718063038", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.070435, 41.594829 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137222934", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.077277, 41.600393 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441459", "POINTID": "1102653995448", "FULLNAME": "Porter", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.074203, 41.615591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137326683", "FULLNAME": "Yost Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.077838, 41.618123 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441459", "POINTID": "1102653995448", "FULLNAME": "Porter", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.074203, 41.615591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137185411", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.068042, 41.628656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047501488", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.075815, 41.634000 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12654 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444424", "POINTID": "1102654020600", "FULLNAME": "Sunset Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.060272, 37.871991 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452353", "POINTID": "1102653959968", "FULLNAME": "Lakewood Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.058051, 37.866435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12653 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437921", "POINTID": "1102653988073", "FULLNAME": "Lincoln Pioneer Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.058327, 37.880047 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12652 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102658412707", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.060229, 37.888214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446488", "POINTID": "1102654022417", "FULLNAME": "Zoar Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.062496, 37.966159 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432345", "POINTID": "1102653972182", "FULLNAME": "Centerville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.063330, 37.994214 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441174", "POINTID": "1102654017859", "FULLNAME": "Pinkston Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.056107, 37.995326 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12632 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436072", "POINTID": "1102654013436", "FULLNAME": "Hesson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.056386, 38.065048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446752", "POINTID": "1102653994948", "FULLNAME": "Pigeon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.066664, 38.100048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446752", "POINTID": "1102653994948", "FULLNAME": "Pigeon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.066664, 38.100048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430885", "POINTID": "1102654007419", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.059446, 38.440325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12576 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110104986588", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.064955, 38.541442 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12571 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442754", "POINTID": "1102654019129", "FULLNAME": "Saint Patricks Glencoe Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.061948, 38.583103 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444799", "POINTID": "1102654020966", "FULLNAME": "Tolberts Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.055565, 38.771158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444799", "POINTID": "1102654020966", "FULLNAME": "Tolberts Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.055565, 38.771158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434222", "POINTID": "1102653977893", "FULLNAME": "Epsom", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.063064, 38.785322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434316", "POINTID": "1102654011810", "FULLNAME": "Fairview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.066119, 38.875879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105575840187", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.063416, 38.889010 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105575840190", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.061157, 38.888914 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444503", "POINTID": "1102654020687", "FULLNAME": "Switz City Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.063611, 39.034442 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432077", "POINTID": "1102654009224", "FULLNAME": "Campbell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.064177, 39.147820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446128", "POINTID": "1102654022051", "FULLNAME": "Wilson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.064456, 39.209762 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437181", "POINTID": "1102654014367", "FULLNAME": "Kealber Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.066683, 39.445595 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444104", "POINTID": "1102653999436", "FULLNAME": "Stearleyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.061404, 39.445040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292076", "FULLNAME": "Volmedics Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.063845, 39.474618 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110260867502", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.057944, 39.473160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440981", "POINTID": "1102654017736", "FULLNAME": "Pell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.064459, 39.524485 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443937", "POINTID": "1102654020128", "FULLNAME": "Spencer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.063064, 39.850873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443937", "POINTID": "1102654020128", "FULLNAME": "Spencer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.063064, 39.850873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944707857", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.060082, 39.945396 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433435", "POINTID": "1102653975411", "FULLNAME": "Deer Mill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.055562, 39.947541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430039", "POINTID": "1102653964283", "FULLNAME": "Alamo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.057214, 39.981985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434883", "POINTID": "1102654012264", "FULLNAME": "Fruits Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.063341, 40.012262 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102604256435", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.061611, 40.083110 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445584", "POINTID": "1102654002128", "FULLNAME": "Waynetown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.059728, 40.087538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292653", "FULLNAME": "Meharry Ag Service Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.055838, 40.203925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292653", "FULLNAME": "Meharry Ag Service Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.055838, 40.203925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12360 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443369", "POINTID": "1102654019635", "FULLNAME": "Sherry Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.063896, 40.372533 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430292", "POINTID": "1102654006760", "FULLNAME": "Asbury Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.060009, 40.421421 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440567", "POINTID": "1102653993898", "FULLNAME": "Old Halfway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.065843, 40.490588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433588", "POINTID": "1102654011341", "FULLNAME": "Dobbins Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.059183, 40.826426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446692", "POINTID": "1102653987354", "FULLNAME": "Laura", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.066688, 41.100037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445877", "POINTID": "1102654002664", "FULLNAME": "Wheatfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.055578, 41.193093 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047464844", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.066693, 41.310338 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047464870", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.063791, 41.305900 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443712", "POINTID": "1102653998679", "FULLNAME": "Smoke Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.065862, 41.413093 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504240396", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.059953, 41.426832 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046610327", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.055686, 41.440746 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046610379", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.056021, 41.444470 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137184752", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.060471, 41.452254 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02038150", "POINTID": "1102654021255", "FULLNAME": "Union Street Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.055584, 41.462816 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449849", "POINTID": "1102654001341", "FULLNAME": "Valparaiso", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.061138, 41.473092 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047730597", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.064746, 41.492219 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047730459", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.060551, 41.488828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137184081", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.066565, 41.498355 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047730597", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.064746, 41.492219 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047751916", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.058443, 41.495882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047701698", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.066779, 41.505964 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047721415", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.064411, 41.502987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137183675", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.061766, 41.511538 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019626304049", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.058738, 41.509586 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137224503", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.063998, 41.532477 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137224511", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.061482, 41.528626 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137224613", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.059575, 41.528911 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137224506", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.064247, 41.533891 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137187488", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.058826, 41.590358 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137186385", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.063957, 41.598112 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137188128", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.063507, 41.594376 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137187481", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.058008, 41.591232 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046608845", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.063453, 41.604950 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137326693", "FULLNAME": "Town Hall", "MTFCC": "K2165" }, "geometry": { "type": "Point", "coordinates": [ -87.062651, 41.611837 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047504197", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.062091, 41.618418 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137187221", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.064277, 41.627447 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137185524", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.056345, 41.638132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444809", "POINTID": "1102653953715", "FULLNAME": "Mt Tom", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.055517, 41.661820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12653 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442223", "POINTID": "1102653996841", "FULLNAME": "Rockport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.049439, 37.883104 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12652 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00448913", "POINTID": "1102653952380", "FULLNAME": "Hanging Rock", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.045828, 37.884770 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12651 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442498", "POINTID": "1102654018868", "FULLNAME": "Saint Bernard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.048607, 37.896158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12633 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446338", "POINTID": "1102654022240", "FULLNAME": "Wright Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.053331, 38.053103 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12632 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430798", "POINTID": "1102654007368", "FULLNAME": "Bender Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.046663, 38.060326 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12629 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444075", "POINTID": "1102654020258", "FULLNAME": "Stark Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.049441, 38.086437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12624 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445871", "POINTID": "1102654021781", "FULLNAME": "Wetherill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.048052, 38.133381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12611 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442548", "POINTID": "1102654018931", "FULLNAME": "Saint James Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.050276, 38.242827 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430344", "POINTID": "1102654006809", "FULLNAME": "Augustana Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.050276, 38.239495 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12609 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02100534", "POINTID": "1102654019135", "FULLNAME": "Saint Paul United Church of Christ Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.046298, 38.263798 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439234", "POINTID": "1102653990764", "FULLNAME": "Millersport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.053888, 38.343106 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015481946791", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.049286, 38.658986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442798", "POINTID": "1102654019168", "FULLNAME": "Saint Peters Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.055211, 38.663422 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439359", "POINTID": "1102653991276", "FULLNAME": "Montgomery", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.046118, 38.662547 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444799", "POINTID": "1102654020966", "FULLNAME": "Tolberts Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.055565, 38.771158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444799", "POINTID": "1102654020966", "FULLNAME": "Tolberts Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.055565, 38.771158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12535 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105575839923", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.054752, 38.895857 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444502", "POINTID": "1102654000112", "FULLNAME": "Switz City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.053001, 39.034999 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434892", "POINTID": "1102654012276", "FULLNAME": "Fuller Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.049178, 39.125597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446195", "POINTID": "1102654022082", "FULLNAME": "Winters Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.047789, 39.198652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432702", "POINTID": "1102653973259", "FULLNAME": "Coal City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.045844, 39.230319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441818", "POINTID": "1102654018317", "FULLNAME": "Red Brush Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.045289, 39.262262 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436098", "POINTID": "1102653983376", "FULLNAME": "Hickory Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.044595, 39.303668 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439987", "POINTID": "1102654016706", "FULLNAME": "Neidlinger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.054460, 39.460041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436877", "POINTID": "1102654014172", "FULLNAME": "Jacks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.051126, 39.641430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431538", "POINTID": "1102654008462", "FULLNAME": "Britton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.044734, 39.704209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441078", "POINTID": "1102654017819", "FULLNAME": "Philadelphia Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.052231, 39.823930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436942", "POINTID": "1102654014217", "FULLNAME": "Jarvis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.054731, 39.856985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438575", "POINTID": "1102654015435", "FULLNAME": "Maple Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.047786, 39.884763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433435", "POINTID": "1102653975411", "FULLNAME": "Deer Mill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.055562, 39.947541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444512", "POINTID": "1102654000146", "FULLNAME": "Sycamore Ford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.047017, 39.958270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443910", "POINTID": "1102654020102", "FULLNAME": "Sparks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.048723, 39.968150 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452279", "POINTID": "1102653955752", "FULLNAME": "Alamo Conservation Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.051115, 39.969480 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444929", "POINTID": "1102653955089", "FULLNAME": "Truax Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.053894, 39.996707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292653", "FULLNAME": "Meharry Ag Service Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.055838, 40.203925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292653", "FULLNAME": "Meharry Ag Service Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.055838, 40.203925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12340 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292472", "FULLNAME": "Sutton Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.050957, 40.544742 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12287 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440890", "POINTID": "1102654017637", "FULLNAME": "Parkison Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.045853, 40.986426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446691", "POINTID": "1102653987795", "FULLNAME": "Lewiston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.045853, 41.026981 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435058", "POINTID": "1102653980674", "FULLNAME": "Gifford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.052521, 41.070869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471608767", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.048578, 41.165276 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017128763958", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.050825, 41.183983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445877", "POINTID": "1102654002664", "FULLNAME": "Wheatfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.055578, 41.193093 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435269", "POINTID": "1102654012711", "FULLNAME": "Graceland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.048902, 41.317537 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452942", "POINTID": "1102654013802", "FULLNAME": "Hopewell Mennonite Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.052802, 41.320592 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047458595", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.047481, 41.408754 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445926", "POINTID": "1102654021852", "FULLNAME": "White Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.050026, 41.412815 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450217", "POINTID": "1102654020444", "FULLNAME": "Stoner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.054749, 41.427538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046610327", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.055686, 41.440746 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046610328", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.054814, 41.438761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046610378", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.053816, 41.444960 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292389", "FULLNAME": "Porter Memorial Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.050573, 41.466801 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02038152", "POINTID": "1102653956944", "FULLNAME": "County Seat Plaza Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.046762, 41.495341 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137178284", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.053792, 41.508583 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137178781", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.053778, 41.507770 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137181091", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.047634, 41.508423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019628609736", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.053867, 41.515364 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137181051", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.048704, 41.512861 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137181091", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.047634, 41.508423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442185", "POINTID": "1102653996782", "FULLNAME": "Roble Woods", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.054065, 41.522025 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438272", "POINTID": "1102653988516", "FULLNAME": "Long Lake Is", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.048331, 41.521708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440349", "POINTID": "1102653993552", "FULLNAME": "Northwood Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.048918, 41.528648 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047510457", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.055428, 41.539956 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450074", "POINTID": "1102653956554", "FULLNAME": "Camp Lawrence", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.053642, 41.533927 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047510287", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.053379, 41.543048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137187494", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.048309, 41.587051 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718064675", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.055063, 41.597637 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718071469", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.046394, 41.591258 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047397493", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.054940, 41.599625 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432458", "POINTID": "1102654009797", "FULLNAME": "Chesterton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.048087, 41.605315 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442752", "POINTID": "1102654019124", "FULLNAME": "Saint Patricks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.048921, 41.601426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439435", "POINTID": "1102653991427", "FULLNAME": "Morgan Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.045863, 41.608369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013873333712", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.050584, 41.619567 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137326680", "FULLNAME": "St Patricks Elementary School and Church", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.048548, 41.619898 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137326682", "FULLNAME": "Fairhaven Acdmy", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.050466, 41.629464 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013873330043", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.048071, 41.629658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444809", "POINTID": "1102653953715", "FULLNAME": "Mt Tom", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.055517, 41.661820 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436901", "POINTID": "1102653953686", "FULLNAME": "Mt Jackson", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.049197, 41.662813 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12645 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442201", "POINTID": "1102653996795", "FULLNAME": "Rock Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.039995, 37.945048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446757", "POINTID": "1102653996585", "FULLNAME": "Ritchie", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.039061, 37.959719 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432490", "POINTID": "1102653972710", "FULLNAME": "Chrisney", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.036384, 38.014772 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432480", "POINTID": "1102654009826", "FULLNAME": "Chinn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.036387, 38.169494 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12611 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436322", "POINTID": "1102653984038", "FULLNAME": "Holland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.036108, 38.245606 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436259", "POINTID": "1102654013665", "FULLNAME": "Hobbs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.033890, 38.401716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12577 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445337", "POINTID": "1102654001618", "FULLNAME": "Waco", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.040282, 38.535326 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432850", "POINTID": "1102654010390", "FULLNAME": "Concord Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.039453, 38.792267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12533 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431497", "POINTID": "1102653951103", "FULLNAME": "Brewer Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.035843, 38.912268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433281", "POINTID": "1102653974971", "FULLNAME": "Daggett", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.038900, 39.215597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436098", "POINTID": "1102653983376", "FULLNAME": "Hickory Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.044595, 39.303668 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12477 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437299", "POINTID": "1102654014518", "FULLNAME": "Killion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.035569, 39.393098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442127", "POINTID": "1102653996729", "FULLNAME": "Roadman Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.033903, 39.474208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442152", "POINTID": "1102654018637", "FULLNAME": "Roberts Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.035572, 39.525596 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110262120288", "FULLNAME": "Van Buren Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.036612, 39.553870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436309", "POINTID": "1102654013702", "FULLNAME": "Holder Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.044458, 39.658374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431538", "POINTID": "1102654008462", "FULLNAME": "Britton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.044734, 39.704209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439238", "POINTID": "1102653990816", "FULLNAME": "Milligan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.038342, 39.845598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445564", "POINTID": "1102654001963", "FULLNAME": "Waveland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.044452, 39.876987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440615", "POINTID": "1102654017372", "FULLNAME": "Old Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.036674, 39.898374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103773061005", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.041623, 39.973634 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445856", "POINTID": "1102654002604", "FULLNAME": "Westpoint", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.043063, 40.345033 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12363 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435116", "POINTID": "1102653980910", "FULLNAME": "Glenhall", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.040839, 40.354201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137986204", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.034990, 40.406720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452388", "POINTID": "1102653962090", "FULLNAME": "Purdue University Forest Laboratory", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.035843, 40.430034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443273", "POINTID": "1102654019521", "FULLNAME": "Shambaugh Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.044176, 40.461422 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137754219", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.042937, 40.754848 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446230", "POINTID": "1102654003169", "FULLNAME": "Wolcott", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.041679, 40.758093 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439255", "POINTID": "1102654016101", "FULLNAME": "Milroy Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.033906, 40.869759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12293 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437747", "POINTID": "1102654014936", "FULLNAME": "Lefler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.035574, 40.936425 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12280 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440141", "POINTID": "1102653993026", "FULLNAME": "Newland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.034188, 41.045869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718715991", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.041550, 41.137395 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718716223", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.039303, 41.136874 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718716242", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.041502, 41.140116 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718716238", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.038863, 41.140082 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137219505", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.035266, 41.310155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472673103", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.034960, 41.320401 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434551", "POINTID": "1102653979070", "FULLNAME": "Five Points Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.035859, 41.332815 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047459097", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.042371, 41.342914 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047459150", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.040110, 41.338081 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047459157", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.033557, 41.342306 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430000", "POINTID": "1102654006359", "FULLNAME": "Adam Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.037248, 41.398371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774780", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.039190, 41.414300 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108864775449", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.035167, 41.414789 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108864775236", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.035663, 41.411005 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046610384", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.044313, 41.442610 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046610384", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.044313, 41.442610 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438586", "POINTID": "1102654015442", "FULLNAME": "Maplewood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.038345, 41.455871 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435272", "POINTID": "1102654012712", "FULLNAME": "Graceland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.039270, 41.459493 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046610665", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.035472, 41.461937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047817971", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.042181, 41.474736 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047755533", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.041194, 41.483572 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047780483", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.033539, 41.480626 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047752094", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.041110, 41.488729 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047751933", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.042245, 41.495054 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047492103", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.034885, 41.499110 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137178785", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.044817, 41.503274 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137178639", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.043790, 41.508304 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137178778", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.042433, 41.501448 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137175536", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.035279, 41.503174 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137181167", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.036915, 41.515410 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047786087", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.043374, 41.523959 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431151", "POINTID": "1102653968258", "FULLNAME": "Blackhawk Beach", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.041140, 41.517816 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137191654", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.038031, 41.518382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02038209", "POINTID": "1102653960791", "FULLNAME": "Mink Lake Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.040306, 41.526981 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444385", "POINTID": "1102654020576", "FULLNAME": "Suman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.037251, 41.542538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446320", "POINTID": "1102654003318", "FULLNAME": "Woodville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.041419, 41.562815 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137184224", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.043168, 41.595744 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444870", "POINTID": "1102654000929", "FULLNAME": "Tremont", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.043642, 41.648647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445969", "POINTID": "1102654021903", "FULLNAME": "Whitehouse Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.033005, 37.966990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105576007420", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.032551, 37.995763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442682", "POINTID": "1102654019063", "FULLNAME": "Saint Martins Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.027772, 38.017271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435016", "POINTID": "1102653980506", "FULLNAME": "Gentryville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.033053, 38.104217 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433754", "POINTID": "1102653976324", "FULLNAME": "Duff", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.026388, 38.327272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436259", "POINTID": "1102654013665", "FULLNAME": "Hobbs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.033890, 38.401716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436607", "POINTID": "1102654013943", "FULLNAME": "Humphries Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.031119, 38.768379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437185", "POINTID": "1102654014483", "FULLNAME": "Ketchem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.031953, 38.863101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443608", "POINTID": "1102654019889", "FULLNAME": "Slinkard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.026675, 38.921156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433575", "POINTID": "1102653975912", "FULLNAME": "Dixon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.033412, 39.070866 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444143", "POINTID": "1102654020358", "FULLNAME": "Steward Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.031122, 39.152542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430548", "POINTID": "1102654007081", "FULLNAME": "Barton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.026677, 39.161987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431889", "POINTID": "1102654009010", "FULLNAME": "Bush Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.026956, 39.204208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439988", "POINTID": "1102654016711", "FULLNAME": "Neihart Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.032790, 39.236707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431800", "POINTID": "1102654008804", "FULLNAME": "Bullerman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.030011, 39.243930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433472", "POINTID": "1102653975613", "FULLNAME": "Denmark", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.025846, 39.269763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443709", "POINTID": "1102653998667", "FULLNAME": "Smithville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.025846, 39.320874 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445306", "POINTID": "1102653955280", "FULLNAME": "Vinegar Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.029183, 39.447540 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442127", "POINTID": "1102653996729", "FULLNAME": "Roadman Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.033903, 39.474208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110262120310", "FULLNAME": "Wesley Cpl", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -87.032930, 39.503968 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445701", "POINTID": "1102654021667", "FULLNAME": "Wesley Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.030569, 39.506986 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110262120310", "FULLNAME": "Wesley Cpl", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -87.032930, 39.503968 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442120", "POINTID": "1102654018619", "FULLNAME": "Roach Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.032235, 39.725597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102629946503", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.025218, 39.739046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444688", "POINTID": "1102654020869", "FULLNAME": "Thomas Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.030011, 39.758096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431121", "POINTID": "1102654007708", "FULLNAME": "Black Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.033343, 39.806430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12387 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444554", "POINTID": "1102654020753", "FULLNAME": "Tally Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.023059, 40.152260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446048", "POINTID": "1102654022018", "FULLNAME": "Willhite Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.033337, 40.153927 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137986202", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.031940, 40.406697 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435334", "POINTID": "1102654012767", "FULLNAME": "Granville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.025841, 40.406422 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443939", "POINTID": "1102654020130", "FULLNAME": "Spencer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.023064, 40.449476 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577431613", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.024947, 40.463385 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439370", "POINTID": "1102653991305", "FULLNAME": "Montmorenci", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.029454, 40.474199 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452077", "POINTID": "1102653997130", "FULLNAME": "Round Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.030290, 40.590311 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439255", "POINTID": "1102654016101", "FULLNAME": "Milroy Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.033906, 40.869759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12286 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431597", "POINTID": "1102654008583", "FULLNAME": "Brown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.027517, 40.992259 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047465029", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.022665, 41.290968 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437448", "POINTID": "1102653986542", "FULLNAME": "Kouts", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.025857, 41.316674 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047459346", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.033311, 41.321398 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047459345", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.028909, 41.319879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047459157", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.033557, 41.342306 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12240 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438498", "POINTID": "1102653989098", "FULLNAME": "Malden", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.026970, 41.376148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108866280162", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.030041, 41.417585 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108866279986", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.028024, 41.415955 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137194968", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.029327, 41.419133 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02038155", "POINTID": "1102653962895", "FULLNAME": "Strongbow Centre Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.030888, 41.455288 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137192171", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.026608, 41.462733 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137183968", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.028635, 41.470753 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047780546", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.025433, 41.473176 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137182153", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.030097, 41.483937 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047780483", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.033539, 41.480626 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137183909", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.028740, 41.478677 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137183912", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.028086, 41.479139 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137190979", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.031315, 41.489640 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137182153", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.030097, 41.483937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452407", "POINTID": "1102653963275", "FULLNAME": "Valparaiso Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.030583, 41.500038 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046611054", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.024148, 41.495165 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137175416", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.032766, 41.503264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137189178", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.031114, 41.512701 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051985363", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.027742, 41.513058 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137195840", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.026626, 41.555413 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137187388", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.025816, 41.589527 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137223165", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.028643, 41.593417 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450076", "POINTID": "1102653962432", "FULLNAME": "Sand Creek Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.029435, 41.600995 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010871623056", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.032844, 41.615065 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137187460", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.030524, 41.607856 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435292", "POINTID": "1102653981209", "FULLNAME": "Graham Woods", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.027254, 41.617536 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292447", "FULLNAME": "Bodin Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.025698, 41.633078 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12629 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446753", "POINTID": "1102653985926", "FULLNAME": "Kercheval", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.013883, 38.089494 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452308", "POINTID": "1102653957350", "FULLNAME": "Duff Conservation Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.021109, 38.316161 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438764", "POINTID": "1102654015609", "FULLNAME": "Mayo Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.015554, 38.316719 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439729", "POINTID": "1102654016547", "FULLNAME": "Mount Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.017502, 38.395885 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12571 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432988", "POINTID": "1102653973902", "FULLNAME": "Corning", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.017504, 38.582828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434858", "POINTID": "1102654012242", "FULLNAME": "Friendship Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.017786, 38.869215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12533 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440597", "POINTID": "1102654017337", "FULLNAME": "Old Slinkard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.018065, 38.908381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440136", "POINTID": "1102653993010", "FULLNAME": "Newberry", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.019452, 38.925048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292225", "FULLNAME": "Benham Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.021224, 38.976096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452084", "POINTID": "1102653999342", "FULLNAME": "Stalcup Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.016120, 38.994491 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444062", "POINTID": "1102654020240", "FULLNAME": "Stanley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.017510, 39.147544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436560", "POINTID": "1102653984423", "FULLNAME": "Hubbell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.012234, 39.183096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444183", "POINTID": "1102653999552", "FULLNAME": "Stockton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.022233, 39.238930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444126", "POINTID": "1102654020321", "FULLNAME": "Stephens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.014457, 39.338096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446434", "POINTID": "1102654022394", "FULLNAME": "Zenor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.011998, 39.368364 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12479 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446434", "POINTID": "1102654022394", "FULLNAME": "Zenor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.011998, 39.368364 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431404", "POINTID": "1102653969057", "FULLNAME": "Bowling Green", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.011681, 39.383097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436244", "POINTID": "1102653983844", "FULLNAME": "Hirt Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.014734, 39.473649 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447125", "POINTID": "1102653964662", "FULLNAME": "Alma Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.019457, 39.608375 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292371", "FULLNAME": "Reinoehl Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.014015, 39.609195 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437283", "POINTID": "1102653985999", "FULLNAME": "Keytsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.012234, 39.651432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445314", "POINTID": "1102654001589", "FULLNAME": "Vivalia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.012234, 39.677543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432682", "POINTID": "1102654010102", "FULLNAME": "Clodfelter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.015286, 39.832542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944710543", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.012220, 39.976978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444213", "POINTID": "1102654020438", "FULLNAME": "Stonebraker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.021117, 39.981985 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944710521", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.012577, 39.977702 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944710543", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.012220, 39.976978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444588", "POINTID": "1102654000353", "FULLNAME": "Taylor Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.016118, 40.025041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434127", "POINTID": "1102653977590", "FULLNAME": "Elmdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.017504, 40.136704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12387 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440464", "POINTID": "1102654017103", "FULLNAME": "Oakland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.016670, 40.149205 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444340", "POINTID": "1102654020549", "FULLNAME": "Sugar Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.013336, 40.223924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072900645", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.016249, 40.449205 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430223", "POINTID": "1102654006685", "FULLNAME": "Apostolic Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.017236, 40.760037 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446231", "POINTID": "1102654022140", "FULLNAME": "Wolcott Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.016402, 40.760037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12295 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438827", "POINTID": "1102653989968", "FULLNAME": "McCoysburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.021962, 40.914481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329171765", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.015493, 41.161159 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108654696191", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.013256, 41.163277 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047465029", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.022665, 41.290968 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047811238", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.020535, 41.323145 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02038151", "POINTID": "1102653955741", "FULLNAME": "Airport Water Treatment Plant", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.014715, 41.455316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046610573", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.015890, 41.467414 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046610573", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.015890, 41.467414 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137220813", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.021321, 41.530801 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137224734", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.013693, 41.534170 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449848", "POINTID": "1102654000880", "FULLNAME": "Tratebas Mill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.017807, 41.563092 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137195889", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.011738, 41.577391 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471623270", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.020860, 41.595611 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137326681", "FULLNAME": "Brummitt Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.018089, 41.616357 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431663", "POINTID": "1102653970127", "FULLNAME": "Brummitt Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.016976, 41.618925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450015", "POINTID": "1102654012286", "FULLNAME": "Furnessville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.014476, 41.651980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430656", "POINTID": "1102654007186", "FULLNAME": "Beasley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.008049, 38.007272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439602", "POINTID": "1102654016432", "FULLNAME": "Mount Moriah Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.003605, 38.015883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442225", "POINTID": "1102653996855", "FULLNAME": "Rockport Junction", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.006663, 38.107273 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432352", "POINTID": "1102654009648", "FULLNAME": "Central Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.007221, 38.266441 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440945", "POINTID": "1102654017703", "FULLNAME": "Payne Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.004721, 38.351440 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430259", "POINTID": "1102654006705", "FULLNAME": "Armstrong Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.007223, 38.400606 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12575 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441004", "POINTID": "1102653994683", "FULLNAME": "Pennyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.008060, 38.553938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444191", "POINTID": "1102654020425", "FULLNAME": "Stoll Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.006952, 38.742827 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451706", "POINTID": "1102654012183", "FULLNAME": "Franklin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.009173, 38.807826 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438742", "POINTID": "1102653953392", "FULLNAME": "Maumee Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.004174, 38.882270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431286", "POINTID": "1102654007896", "FULLNAME": "Bogard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.005008, 38.945602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292209", "FULLNAME": "Shawnee Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.002749, 39.042722 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437069", "POINTID": "1102653985539", "FULLNAME": "Johnstown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.008900, 39.166709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434503", "POINTID": "1102654011985", "FULLNAME": "Fiscus Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.001121, 39.226429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438612", "POINTID": "1102654015462", "FULLNAME": "Marion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.005568, 39.296708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431831", "POINTID": "1102654008848", "FULLNAME": "Burger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.007789, 39.302819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438705", "POINTID": "1102654015563", "FULLNAME": "Mast Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.010289, 39.316429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434902", "POINTID": "1102654012279", "FULLNAME": "Funk Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.000845, 39.344485 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12479 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434318", "POINTID": "1102654011812", "FULLNAME": "Fairview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.008068, 39.368930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431404", "POINTID": "1102653969057", "FULLNAME": "Bowling Green", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.011681, 39.383097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441473", "POINTID": "1102653995493", "FULLNAME": "Portland Mills", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.009179, 39.778099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441191", "POINTID": "1102654017874", "FULLNAME": "Pisgah Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.005845, 39.801431 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436087", "POINTID": "1102653983365", "FULLNAME": "Hibernia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.001116, 40.004209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445688", "POINTID": "1102654002198", "FULLNAME": "Wesley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.006671, 40.067819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12324 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137756531", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.006920, 40.673769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436066", "POINTID": "1102654013420", "FULLNAME": "Hershman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.007521, 41.117814 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292396", "FULLNAME": "Porter County Regional Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -87.005804, 41.453402 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137200293", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.009275, 41.488625 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137189306", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.008146, 41.484221 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137200826", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.004573, 41.484924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047782949", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.009364, 41.499255 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137189043", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.000794, 41.563041 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137189045", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.000652, 41.561803 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137195889", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.011738, 41.577391 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434907", "POINTID": "1102653980166", "FULLNAME": "Furnessville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.007532, 41.651703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718204252", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.991219, 37.937003 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12625 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437907", "POINTID": "1102653988046", "FULLNAME": "Lincoln City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.998605, 38.121161 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433288", "POINTID": "1102653974990", "FULLNAME": "Dale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.989996, 38.168939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439727", "POINTID": "1102654016545", "FULLNAME": "Mount Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.989719, 38.209496 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103945424868", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.990366, 38.393488 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430061", "POINTID": "1102654006463", "FULLNAME": "Alexander Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.993332, 38.386717 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107084763", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.991967, 38.396524 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436827", "POINTID": "1102653985059", "FULLNAME": "Ireland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.999445, 38.414772 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504132369", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.997570, 38.426410 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12561 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449631", "POINTID": "1102653971373", "FULLNAME": "Cannelburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.998340, 38.669839 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12557 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445349", "POINTID": "1102654021409", "FULLNAME": "Wagler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.997229, 38.704215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437817", "POINTID": "1102654014955", "FULLNAME": "Liberty Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.993340, 38.758103 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440512", "POINTID": "1102653993820", "FULLNAME": "Odon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.991396, 38.842825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445435", "POINTID": "1102654021505", "FULLNAME": "Walnut Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.998898, 38.856158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432228", "POINTID": "1102654009486", "FULLNAME": "Castle Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.993343, 39.009768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442045", "POINTID": "1102653996542", "FULLNAME": "Rincon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.990288, 39.102545 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438084", "POINTID": "1102654015079", "FULLNAME": "Little John Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.000011, 39.200596 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441805", "POINTID": "1102654018306", "FULLNAME": "Rea Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.998066, 39.267541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452129", "POINTID": "1102653989483", "FULLNAME": "Marion Mills", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.998900, 39.306430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434902", "POINTID": "1102654012279", "FULLNAME": "Funk Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.000845, 39.344485 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443730", "POINTID": "1102654019975", "FULLNAME": "Snoddy Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.997790, 39.357541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433682", "POINTID": "1102653951768", "FULLNAME": "Drake Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.993069, 39.408652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441705", "POINTID": "1102653995904", "FULLNAME": "Raab Xroad", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.991959, 39.487820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431667", "POINTID": "1102653970138", "FULLNAME": "Brunerstown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.998345, 39.652543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438422", "POINTID": "1102654015349", "FULLNAME": "Lydick Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.997229, 39.903099 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431643", "POINTID": "1102653970018", "FULLNAME": "Browns Vly", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.991951, 39.903099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292642", "FULLNAME": "Parker Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.997801, 39.972428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446421", "POINTID": "1102654022355", "FULLNAME": "Yountsville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.993061, 40.025041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444702", "POINTID": "1102654020886", "FULLNAME": "Thompson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.998061, 40.039485 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441508", "POINTID": "1102654018064", "FULLNAME": "Potts Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.998337, 40.111428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12342 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440499", "POINTID": "1102653993803", "FULLNAME": "Octagon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.992233, 40.526420 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12308 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440841", "POINTID": "1102654017613", "FULLNAME": "Palestine Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.000293, 40.808649 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430411", "POINTID": "1102653966262", "FULLNAME": "Baileys Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.998353, 41.070871 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430316", "POINTID": "1102653965839", "FULLNAME": "Asphaltum", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.998074, 41.100314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292305", "FULLNAME": "Alley Oop Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.996242, 41.120857 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292305", "FULLNAME": "Alley Oop Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.996242, 41.120857 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774997", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.000188, 41.447893 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438414", "POINTID": "1102654015318", "FULLNAME": "Luther Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.993914, 41.449482 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137194857", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.998587, 41.459230 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137194874", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.998144, 41.457967 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137194857", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.998587, 41.459230 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046610895", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.994204, 41.491038 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137179138", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.996996, 41.499255 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046610894", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.992198, 41.495432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444384", "POINTID": "1102653999806", "FULLNAME": "Suman", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.000030, 41.542815 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137189043", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.000794, 41.563041 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137189045", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.000652, 41.561803 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8465, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137221583", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.989904, 41.681871 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12647 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449661", "POINTID": "1102653981237", "FULLNAME": "Grandview", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.981104, 37.933661 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718203849", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.988947, 37.939838 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12625 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441952", "POINTID": "1102654018470", "FULLNAME": "Richardson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.981662, 38.125883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12624 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441952", "POINTID": "1102654018470", "FULLNAME": "Richardson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.981662, 38.125883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12623 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441175", "POINTID": "1102654017860", "FULLNAME": "Pinkston Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.980551, 38.140885 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117908034", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.986077, 38.165453 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12617 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259505644", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.988118, 38.188107 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439727", "POINTID": "1102654016545", "FULLNAME": "Mount Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.989719, 38.209496 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438917", "POINTID": "1102654015782", "FULLNAME": "McKee Ditch", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.978610, 38.376162 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107020423", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.983556, 38.375659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433552", "POINTID": "1102654011320", "FULLNAME": "Dillin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.980860, 38.379505 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438917", "POINTID": "1102654015782", "FULLNAME": "McKee Ditch", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.978610, 38.376162 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102167638957", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.985245, 38.391026 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102167745828", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.983826, 38.387110 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107084960", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.989223, 38.397680 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437411", "POINTID": "1102653953103", "FULLNAME": "Knott Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.981115, 38.566994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437294", "POINTID": "1102654014513", "FULLNAME": "Kilgore Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.978897, 38.788105 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449058", "POINTID": "1102653952007", "FULLNAME": "Fairplay Mound", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.985565, 39.060325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433578", "POINTID": "1102654011331", "FULLNAME": "Dixon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.985565, 39.096989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446331", "POINTID": "1102654003348", "FULLNAME": "Worthington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.979452, 39.125044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443561", "POINTID": "1102654019862", "FULLNAME": "Sixmile Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.986401, 39.356986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12479 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443557", "POINTID": "1102653998546", "FULLNAME": "Six Points", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.986401, 39.371709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433149", "POINTID": "1102653951559", "FULLNAME": "Cromwell Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.987791, 39.424486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446038", "POINTID": "1102654022000", "FULLNAME": "Wilkerson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.979457, 39.440875 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431338", "POINTID": "1102654008067", "FULLNAME": "Boone Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.986959, 39.552542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442418", "POINTID": "1102653997245", "FULLNAME": "Russellville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.983896, 39.858370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445529", "POINTID": "1102654021569", "FULLNAME": "Wasson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.982507, 39.910043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445642", "POINTID": "1102654021630", "FULLNAME": "Weir Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.987783, 39.994486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446420", "POINTID": "1102654003580", "FULLNAME": "Yountsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.980007, 40.024764 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440105", "POINTID": "1102653992843", "FULLNAME": "New Richmond", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.978894, 40.195591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440105", "POINTID": "1102653992843", "FULLNAME": "New Richmond", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.978894, 40.195591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137983742", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.982129, 40.459360 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984873", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.982751, 40.472071 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984869", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.979516, 40.471418 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984873", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.982751, 40.472071 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12321 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445800", "POINTID": "1102654021724", "FULLNAME": "West Point Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.984457, 40.705036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292524", "FULLNAME": "Harrier Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.981107, 40.751386 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443180", "POINTID": "1102653997951", "FULLNAME": "Seafield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.986680, 40.756427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12293 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435676", "POINTID": "1102653982306", "FULLNAME": "Hanging Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.983628, 40.934202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046610916", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.985401, 41.482792 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046610909", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.987000, 41.493869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046611124", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.980417, 41.501890 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432186", "POINTID": "1102654009412", "FULLNAME": "Carter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.984473, 41.534204 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430997", "POINTID": "1102653967945", "FULLNAME": "Beverly Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.985583, 41.548927 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047393744", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.986898, 41.583127 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137221583", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.989904, 41.681871 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137221657", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.987437, 41.682672 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433289", "POINTID": "1102654011078", "FULLNAME": "Dale Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.976107, 38.165329 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718711802", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.977856, 38.207327 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438917", "POINTID": "1102654015782", "FULLNAME": "McKee Ditch", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.978610, 38.376162 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438917", "POINTID": "1102654015782", "FULLNAME": "McKee Ditch", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.978610, 38.376162 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446037", "POINTID": "1102654021988", "FULLNAME": "Wilhoit Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.976799, 38.389185 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107009422", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.973001, 38.390291 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107022116", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.972837, 38.386687 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476171017", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.977888, 38.398737 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12581 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441469", "POINTID": "1102653995477", "FULLNAME": "Portersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.978336, 38.499495 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12572 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437403", "POINTID": "1102653953075", "FULLNAME": "Knob Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.977226, 38.579771 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12560 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103739253454", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.973465, 38.680127 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437294", "POINTID": "1102654014513", "FULLNAME": "Kilgore Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.978897, 38.788105 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12535 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434453", "POINTID": "1102654011919", "FULLNAME": "Ferguson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.975842, 38.898659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12534 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048521116", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.978435, 38.904324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435068", "POINTID": "1102654012499", "FULLNAME": "Gilbreath Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.977507, 38.920325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441373", "POINTID": "1102653995287", "FULLNAME": "Plummer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.972508, 38.981714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434112", "POINTID": "1102653977553", "FULLNAME": "Elliston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.970842, 39.027823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434112", "POINTID": "1102653977553", "FULLNAME": "Elliston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.970842, 39.027823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433557", "POINTID": "1102653951719", "FULLNAME": "Dillon Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.967787, 39.209485 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439968", "POINTID": "1102653953758", "FULLNAME": "Need Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.976120, 39.225596 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444136", "POINTID": "1102654020345", "FULLNAME": "Steubenville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.975844, 39.278375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433201", "POINTID": "1102654010962", "FULLNAME": "Crouse Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.970568, 39.343097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440172", "POINTID": "1102654016876", "FULLNAME": "Nier Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.972792, 39.446432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434669", "POINTID": "1102654012096", "FULLNAME": "Forgey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.976120, 39.823376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436757", "POINTID": "1102654014113", "FULLNAME": "Indian Creek Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.967784, 39.933654 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440569", "POINTID": "1102654017255", "FULLNAME": "Old Hickory Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.978341, 39.938098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944716152", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.970737, 39.962682 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067175281", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.969477, 39.973112 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439073", "POINTID": "1102654016051", "FULLNAME": "Michael Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.973618, 40.003097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440393", "POINTID": "1102654017460", "FULLNAME": "O'Neal Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.978060, 40.017819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944718886", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.970072, 40.021091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452400", "POINTID": "1102653962802", "FULLNAME": "Spring Ledge Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.968895, 40.033375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047031253", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.970193, 40.067879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440105", "POINTID": "1102653992843", "FULLNAME": "New Richmond", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.978894, 40.195591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440105", "POINTID": "1102653992843", "FULLNAME": "New Richmond", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.978894, 40.195591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443345", "POINTID": "1102654019604", "FULLNAME": "Shelby Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.975560, 40.289202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12366 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434402", "POINTID": "1102654011857", "FULLNAME": "Farmers Institute Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.976118, 40.323645 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577432347", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.972931, 40.445106 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984905", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.969485, 40.441193 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984903", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.975072, 40.451217 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984895", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.974106, 40.449558 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984880", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.969423, 40.461538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984871", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.976445, 40.468549 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984866", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.972958, 40.471620 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984874", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.973090, 40.465125 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103727759028", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.976265, 40.480408 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137986149", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.973985, 40.478800 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081521903", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.976276, 40.481373 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087463396", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.971888, 40.482260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12298 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437727", "POINTID": "1102653987512", "FULLNAME": "Lee", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.968071, 40.896425 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444624", "POINTID": "1102654000417", "FULLNAME": "Tefft", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.973910, 41.198649 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433800", "POINTID": "1102653976512", "FULLNAME": "Dunns Bridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.973910, 41.225592 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046611199", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.977703, 41.506380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137191120", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.978129, 41.553375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047396482", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.974718, 41.559551 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047395998", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.968093, 41.565967 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431827", "POINTID": "1102653970635", "FULLNAME": "Burdick", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.972808, 41.601149 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430998", "POINTID": "1102653967971", "FULLNAME": "Beverly Shores", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.977531, 41.692539 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431777", "POINTID": "1102653970508", "FULLNAME": "Buffaloville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.965274, 38.097551 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431778", "POINTID": "1102654008788", "FULLNAME": "Buffaloville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.965550, 38.104495 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12607 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434305", "POINTID": "1102654011790", "FULLNAME": "Fairmount Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.962498, 38.278662 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107021046", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.966215, 38.282166 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107025631", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.966119, 38.311687 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107021444", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.962076, 38.314309 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104692091651", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.964539, 38.383700 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434250", "POINTID": "1102654011734", "FULLNAME": "Evans Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.965832, 38.389496 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504117523", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.959662, 38.392237 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107085252", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.967226, 38.396667 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690874449", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.960491, 38.399383 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12585 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443367", "POINTID": "1102654019630", "FULLNAME": "Sherritt Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.959445, 38.463385 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441729", "POINTID": "1102653995972", "FULLNAME": "Raglesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.961395, 38.803382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441389", "POINTID": "1102653995309", "FULLNAME": "Pt Commerce", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.965287, 39.125322 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435919", "POINTID": "1102654013286", "FULLNAME": "Hayes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.956953, 39.124767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433557", "POINTID": "1102653951719", "FULLNAME": "Dillon Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.967787, 39.209485 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440928", "POINTID": "1102653994529", "FULLNAME": "Patricksburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.959177, 39.315597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431939", "POINTID": "1102654009070", "FULLNAME": "Cagle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.963069, 39.451432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435384", "POINTID": "1102654012840", "FULLNAME": "Greeley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.961679, 39.477264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438722", "POINTID": "1102654015569", "FULLNAME": "Matkin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.960569, 39.506431 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441242", "POINTID": "1102653995172", "FULLNAME": "Pleasant Gardens", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.964458, 39.551431 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441866", "POINTID": "1102653996251", "FULLNAME": "Reelsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.966958, 39.557542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432677", "POINTID": "1102653973161", "FULLNAME": "Clinton Falls", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.963898, 39.719209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435962", "POINTID": "1102654013319", "FULLNAME": "Hebron Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.964453, 39.838655 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292464", "FULLNAME": "Durham Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.957898, 39.854475 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437082", "POINTID": "1102654014293", "FULLNAME": "Jones Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.963619, 39.885599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436757", "POINTID": "1102654014113", "FULLNAME": "Indian Creek Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.967784, 39.933654 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944716788", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.965502, 39.958364 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944716541", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.967355, 39.963878 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944716294", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.963640, 39.960747 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440373", "POINTID": "1102654017030", "FULLNAME": "Nutt Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.962506, 40.013376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435816", "POINTID": "1102654013207", "FULLNAME": "Harshbarger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.961950, 40.051152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431465", "POINTID": "1102654008273", "FULLNAME": "Breaks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.958337, 40.083372 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12363 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433812", "POINTID": "1102654011452", "FULLNAME": "Durkee Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.966395, 40.355033 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433812", "POINTID": "1102654011452", "FULLNAME": "Durkee Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.966395, 40.355033 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442986", "POINTID": "1102654019269", "FULLNAME": "Sand Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.966119, 40.408088 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438933", "POINTID": "1102653990055", "FULLNAME": "McQuinn Estates", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.958898, 40.437532 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984900", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.966894, 40.445210 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435408", "POINTID": "1102653981525", "FULLNAME": "Green Meadows", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.965842, 40.439756 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046627787", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.959676, 40.439043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984893", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.965840, 40.449586 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577444819", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.956707, 40.448966 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984888", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.966365, 40.457046 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984891", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.960864, 40.455666 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452316", "POINTID": "1102653957683", "FULLNAME": "Elks Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.967532, 40.470912 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087354948", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.967240, 40.465003 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437378", "POINTID": "1102653986305", "FULLNAME": "Klondike", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.962232, 40.467531 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087463393", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.957734, 40.483468 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430397", "POINTID": "1102653966251", "FULLNAME": "Badger Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.963621, 40.583644 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12284 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438693", "POINTID": "1102654015537", "FULLNAME": "Mason Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.962516, 41.012815 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442174", "POINTID": "1102654018648", "FULLNAME": "Robinson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.956683, 41.034481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444832", "POINTID": "1102654000799", "FULLNAME": "Town of Pines", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.960443, 41.682079 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137221879", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.957624, 41.701477 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438964", "POINTID": "1102654015891", "FULLNAME": "Meeks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.954993, 38.016995 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12632 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444536", "POINTID": "1102654020710", "FULLNAME": "Tableman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.953327, 38.060328 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12630 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432584", "POINTID": "1102653972967", "FULLNAME": "Clay City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.951661, 38.082550 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12629 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432584", "POINTID": "1102653972967", "FULLNAME": "Clay City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.951661, 38.082550 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117936193", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.946630, 38.107433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12626 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117942434", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.948842, 38.112880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12621 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434602", "POINTID": "1102653952077", "FULLNAME": "Flint Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.956385, 38.155052 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12614 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449677", "POINTID": "1102653985508", "FULLNAME": "Johnsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.955551, 38.217831 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12610 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292206", "FULLNAME": "Huntingburg Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.953692, 38.249025 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107019779", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.953952, 38.289526 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107026150", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.948877, 38.289728 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436632", "POINTID": "1102653984610", "FULLNAME": "Huntingburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.954998, 38.298940 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107054716", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.953287, 38.389025 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107028873", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.956433, 38.397709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499198496", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.953134, 38.431652 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499198509", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.947625, 38.429207 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499198134", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.955878, 38.437928 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12574 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430072", "POINTID": "1102653964436", "FULLNAME": "Alfordsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.948298, 38.560692 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12533 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048521375", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.945763, 38.912149 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110109575894", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.949019, 39.022289 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445047", "POINTID": "1102654021171", "FULLNAME": "Union Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.945841, 39.054489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444053", "POINTID": "1102654020219", "FULLNAME": "Stalcup Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.949175, 39.103101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435919", "POINTID": "1102654013286", "FULLNAME": "Hayes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.956953, 39.124767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435502", "POINTID": "1102654012925", "FULLNAME": "Griffith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.952509, 39.139766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436276", "POINTID": "1102653983972", "FULLNAME": "Hoffman Crossing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.949733, 39.359209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442976", "POINTID": "1102653954444", "FULLNAME": "Sand Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.955011, 39.439487 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441396", "POINTID": "1102653995339", "FULLNAME": "Poland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.950846, 39.444209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435252", "POINTID": "1102654012683", "FULLNAME": "Grable Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.954456, 39.490875 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292487", "FULLNAME": "Cooper Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.951251, 39.582930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452225", "POINTID": "1102653961545", "FULLNAME": "Okalla Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.950012, 39.617822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430445", "POINTID": "1102653950688", "FULLNAME": "Bald Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.955290, 39.629765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438168", "POINTID": "1102654015123", "FULLNAME": "Little Walnut Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.954456, 39.694210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444443", "POINTID": "1102654020628", "FULLNAME": "Sutherlin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.946954, 39.807265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052083366", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.956527, 39.965305 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432939", "POINTID": "1102654010559", "FULLNAME": "Coons Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.954172, 39.985041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434924", "POINTID": "1102654012327", "FULLNAME": "Galey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.946117, 39.987820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452399", "POINTID": "1102653962786", "FULLNAME": "Sportsmen Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.951672, 40.034486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067178112", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.949151, 40.038193 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067176584", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.947029, 40.055726 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446149", "POINTID": "1102654022059", "FULLNAME": "Wilson Killen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.951114, 40.160872 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12361 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087334958", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.955320, 40.370733 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12360 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443237", "POINTID": "1102653998077", "FULLNAME": "Shadeland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.948767, 40.373713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12357 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452390", "POINTID": "1102653962124", "FULLNAME": "Purdue University Poultry Farm", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.949451, 40.404477 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046627796", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.955280, 40.426702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729794649", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.956463, 40.435891 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046627793", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.953893, 40.433774 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577444818", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.955526, 40.446692 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046627788", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.954926, 40.441801 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729444794", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.955545, 40.451405 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046627462", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.950382, 40.462691 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046627199", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.956811, 40.465813 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046627202", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.955642, 40.464303 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046627457", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.950170, 40.465954 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046627478", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.948483, 40.463509 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435963", "POINTID": "1102654013322", "FULLNAME": "Hebron Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.953619, 40.489476 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12294 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440717", "POINTID": "1102654017528", "FULLNAME": "Osborne Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.955014, 40.923093 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442174", "POINTID": "1102654018648", "FULLNAME": "Robinson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.956683, 41.034481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432546", "POINTID": "1102653972834", "FULLNAME": "Clanricarde", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.949465, 41.288370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292380", "FULLNAME": "Wyckoff Airstrip", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.948751, 41.482802 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449641", "POINTID": "1102653973344", "FULLNAME": "Coburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.949470, 41.518927 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047488728", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.954191, 41.549441 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047488726", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.953882, 41.554692 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047488725", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.951205, 41.550102 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047396045", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.951136, 41.564603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137191476", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.953877, 41.700644 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440593", "POINTID": "1102654017320", "FULLNAME": "Old Sergeant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.944714, 37.983384 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440151", "POINTID": "1102653993096", "FULLNAME": "Newtonville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.943325, 38.001996 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437815", "POINTID": "1102653987870", "FULLNAME": "Liberal", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.943049, 38.045884 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117936222", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.944165, 38.100149 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117936222", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.944165, 38.100149 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12626 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117942456", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.946005, 38.111534 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117942466", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.944186, 38.111145 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107413655", "FULLNAME": "Hospital", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.941102, 38.395878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107048056", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.937279, 38.410579 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107048056", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.937279, 38.410579 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107057410", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.945286, 38.427311 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499198511", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.944226, 38.429225 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432941", "POINTID": "1102654010565", "FULLNAME": "Cooper Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.935834, 38.480329 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430073", "POINTID": "1102654006506", "FULLNAME": "Alfordsville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.944725, 38.568661 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437072", "POINTID": "1102653952970", "FULLNAME": "Jolliff Rocks", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.936394, 38.890880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12535 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437072", "POINTID": "1102653952970", "FULLNAME": "Jolliff Rocks", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.936394, 38.890880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12533 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048521375", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.945763, 38.912149 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431200", "POINTID": "1102653968447", "FULLNAME": "Bloomfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.937497, 39.026975 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110109547180", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.942225, 39.036826 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110109547154", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.939718, 39.036995 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445047", "POINTID": "1102654021171", "FULLNAME": "Union Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.945841, 39.054489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431709", "POINTID": "1102654008746", "FULLNAME": "Bucher Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.938897, 39.091989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440405", "POINTID": "1102654017051", "FULLNAME": "Oak Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.942786, 39.167265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269606509", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.941311, 39.267042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443036", "POINTID": "1102653954484", "FULLNAME": "Satan Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.938065, 39.341432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446722", "POINTID": "1102653967019", "FULLNAME": "Beamer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.937510, 39.366709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437199", "POINTID": "1102653952993", "FULLNAME": "Keiser Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.945291, 39.445320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434463", "POINTID": "1102654011930", "FULLNAME": "Fertig Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.945567, 39.465042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431940", "POINTID": "1102653971071", "FULLNAME": "Cagle Mill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.939736, 39.487265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439474", "POINTID": "1102653991495", "FULLNAME": "Morton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.936351, 39.763084 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446129", "POINTID": "1102654022052", "FULLNAME": "Wilson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.945562, 40.009209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067169805", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.939262, 40.023246 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292496", "FULLNAME": "Findlay Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.940828, 40.338884 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292551", "FULLNAME": "Purdue University Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.936885, 40.412303 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047028691", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.939667, 40.445430 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047028695", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.934726, 40.445420 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081882765", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.938712, 40.451078 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046627490", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.944806, 40.463460 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444779", "POINTID": "1102654020947", "FULLNAME": "Tippecanoe Memory Gardens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.937786, 40.468643 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984859", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.945004, 40.474432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046627583", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.937687, 40.482369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8470, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329171597", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.938905, 41.082980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117942813", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.927012, 38.100048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117942729", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.924206, 38.106903 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12626 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117942708", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.926864, 38.114693 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117942698", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.925979, 38.112505 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449691", "POINTID": "1102653989396", "FULLNAME": "Mariah Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.924716, 38.165329 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12614 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442543", "POINTID": "1102653997305", "FULLNAME": "Saint Henry", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.928605, 38.217552 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436944", "POINTID": "1102653985334", "FULLNAME": "Jasper", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.931108, 38.391441 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432437", "POINTID": "1102654009748", "FULLNAME": "Chattin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.929445, 38.482553 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110104965224", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.927237, 38.733132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103939053306", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.933948, 39.025285 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435859", "POINTID": "1102653982804", "FULLNAME": "Hashtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.924450, 39.025048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440797", "POINTID": "1102654017563", "FULLNAME": "Owens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.930563, 39.124490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430270", "POINTID": "1102653965612", "FULLNAME": "Arney", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.931676, 39.218652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12479 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440651", "POINTID": "1102654017450", "FULLNAME": "Olive Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.932789, 39.371431 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438515", "POINTID": "1102653989162", "FULLNAME": "Manhattan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.927511, 39.555042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438515", "POINTID": "1102653989162", "FULLNAME": "Manhattan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.927511, 39.555042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431340", "POINTID": "1102654008073", "FULLNAME": "Boone-Hutcheson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.930566, 39.586988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440977", "POINTID": "1102654017725", "FULLNAME": "Peffley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.929453, 39.828099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440169", "POINTID": "1102654016869", "FULLNAME": "Nicolas Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.927229, 39.862822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436752", "POINTID": "1102654014105", "FULLNAME": "Indian Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.927505, 39.924209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067178153", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.927049, 40.037025 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067174223", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.933283, 40.052501 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12388 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439662", "POINTID": "1102654016489", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.926116, 40.142538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12369 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439275", "POINTID": "1102654016113", "FULLNAME": "Mintonye Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.931950, 40.301145 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436102", "POINTID": "1102654013455", "FULLNAME": "Hickory Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.932926, 40.345753 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444580", "POINTID": "1102654000343", "FULLNAME": "Taylor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.933616, 40.340311 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081585036", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.927422, 40.381808 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446665", "POINTID": "1102653999827", "FULLNAME": "Summit", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.929152, 40.416700 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110138036496", "FULLNAME": "Purdue Univ (Shreve Hall)", "MTFCC": "K1239" }, "geometry": { "type": "Point", "coordinates": [ -86.924866, 40.426983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047028695", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.934726, 40.445420 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444089", "POINTID": "1102653962842", "FULLNAME": "State Police Post Number 3", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.929171, 40.453642 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046628216", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.932789, 40.462642 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046627586", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.930064, 40.480490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046627584", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.931078, 40.482050 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12341 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577454660", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.932494, 40.533197 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577454700", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.927436, 40.535103 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12340 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431946", "POINTID": "1102653971075", "FULLNAME": "Cairo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.924732, 40.540865 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292354", "FULLNAME": "Antonian Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.930963, 41.101412 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292681", "FULLNAME": "Lou Abbett Farms Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.927355, 41.335024 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442442", "POINTID": "1102654018826", "FULLNAME": "Sacred Heart Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.930858, 41.435317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434048", "POINTID": "1102654011578", "FULLNAME": "Eight Square Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.932805, 41.601705 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01852053", "POINTID": "1102653953653", "FULLNAME": "Mt Baldy", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.925091, 41.711139 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12630 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437242", "POINTID": "1102653985874", "FULLNAME": "Kennedy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.922492, 38.081440 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117942848", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.921857, 38.098389 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117936049", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.916911, 38.099100 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117946411", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.913842, 38.095516 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117942865", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.920615, 38.103624 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117942744", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.913333, 38.106602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12626 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117942764", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.920103, 38.112654 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117939724", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.914663, 38.112279 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12625 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449729", "POINTID": "1102653997651", "FULLNAME": "Santa Claus", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.914159, 38.120051 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12623 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117908212", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.918220, 38.136179 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12609 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435587", "POINTID": "1102654013043", "FULLNAME": "Hagen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.913882, 38.260885 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12585 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441847", "POINTID": "1102654018353", "FULLNAME": "Reed Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.914443, 38.470607 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435928", "POINTID": "1102653982916", "FULLNAME": "Haysville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.914998, 38.485607 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445985", "POINTID": "1102654002854", "FULLNAME": "Whitfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.912780, 38.618660 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12561 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438296", "POINTID": "1102653988577", "FULLNAME": "Loogootee", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.914169, 38.676994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12560 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114541426", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.921245, 38.681553 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438296", "POINTID": "1102653988577", "FULLNAME": "Loogootee", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.914169, 38.676994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435174", "POINTID": "1102654012603", "FULLNAME": "Goodwill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.915835, 38.688382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446307", "POINTID": "1102654022212", "FULLNAME": "Woods Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.914169, 38.716438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12555 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114541258", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.919089, 38.723379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434389", "POINTID": "1102653978471", "FULLNAME": "Farlen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.922782, 38.850604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434906", "POINTID": "1102653980155", "FULLNAME": "Furnace", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.913062, 39.014213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446063", "POINTID": "1102654022025", "FULLNAME": "Williams Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.920009, 39.167820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437109", "POINTID": "1102653985637", "FULLNAME": "Jordan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.916677, 39.398377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067409191", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.920776, 39.676872 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067409460", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.921181, 39.727895 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437601", "POINTID": "1102654014780", "FULLNAME": "Landes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.923064, 39.832544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437492", "POINTID": "1102654014685", "FULLNAME": "la Follett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.913620, 39.860876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440583", "POINTID": "1102654017296", "FULLNAME": "Old Pottinger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.920561, 39.915598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449700", "POINTID": "1102653992673", "FULLNAME": "New Market", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.921395, 39.952544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292665", "FULLNAME": "Crawfordsville Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.919858, 39.975636 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443476", "POINTID": "1102654019785", "FULLNAME": "Sidener Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.920006, 40.003652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047032116", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.920103, 40.024236 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067177307", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.918721, 40.044561 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067177291", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.918745, 40.045433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440432", "POINTID": "1102654017071", "FULLNAME": "Oak Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.913893, 40.057541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12375 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446668", "POINTID": "1102653973975", "FULLNAME": "Corwin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.915004, 40.251701 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12369 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443844", "POINTID": "1102653998871", "FULLNAME": "South Raub", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.913338, 40.301423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12368 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729729739", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.923530, 40.307187 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441615", "POINTID": "1102654018170", "FULLNAME": "Provault Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.923340, 40.343923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12363 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087073511", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.923348, 40.351708 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485733087", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.913671, 40.353760 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12360 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087160735", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.916189, 40.380043 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087160732", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.916414, 40.379219 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087160741", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.913469, 40.374926 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137985390", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.914714, 40.385242 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12358 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442695", "POINTID": "1102654019076", "FULLNAME": "Saint Marys Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.916396, 40.395866 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046629057", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.920263, 40.455256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046629048", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.913322, 40.463721 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046628179", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.922307, 40.456464 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430480", "POINTID": "1102653966614", "FULLNAME": "Bar-Barry Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.915841, 40.456144 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046629057", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.920263, 40.455256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046629046", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.913620, 40.467229 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430238", "POINTID": "1102653955796", "FULLNAME": "Archibald Memorial Home", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.919177, 40.586979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12319 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437612", "POINTID": "1102654014792", "FULLNAME": "Lane Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.918067, 40.720036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12294 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439950", "POINTID": "1102654016657", "FULLNAME": "Nauvoo Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.912791, 40.923371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292417", "FULLNAME": "Tatertown Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.922908, 41.084191 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110402036171", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.921173, 41.677065 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401942988", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.917807, 41.677113 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292407", "FULLNAME": "Foertsch Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.909827, 38.036426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12631 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437569", "POINTID": "1102653987096", "FULLNAME": "Lamar", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.905549, 38.069219 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12624 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117908084", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.907223, 38.132894 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12623 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117908176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.907949, 38.137257 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117908135", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.906810, 38.136934 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117908167", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.901754, 38.137145 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438485", "POINTID": "1102654015386", "FULLNAME": "Main Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.903052, 38.311165 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109097591809", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.908405, 38.370129 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107016137", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.912034, 38.382604 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109089656616", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.906394, 38.382213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107028538", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.911426, 38.386916 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12576 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436472", "POINTID": "1102653952743", "FULLNAME": "Hopper Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.906388, 38.544496 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445985", "POINTID": "1102654002854", "FULLNAME": "Whitfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.912780, 38.618660 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12560 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442569", "POINTID": "1102654018952", "FULLNAME": "Saint Johns Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.908612, 38.685328 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114567151", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.904385, 38.682313 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446879", "POINTID": "1102653969190", "FULLNAME": "Bramble", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.909449, 38.778937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433088", "POINTID": "1102653974240", "FULLNAME": "Crane", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.903856, 38.891177 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12535 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433088", "POINTID": "1102653974240", "FULLNAME": "Crane", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.903856, 38.891177 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12533 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443134", "POINTID": "1102653997832", "FULLNAME": "Scotland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.903894, 38.912825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431992", "POINTID": "1102653971123", "FULLNAME": "Calvertville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.903897, 39.116433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436652", "POINTID": "1102653952818", "FULLNAME": "Hurricane Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.909454, 39.341154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269621619", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.908835, 39.472428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430441", "POINTID": "1102654006928", "FULLNAME": "Bakesburg Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.910841, 39.807543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443578", "POINTID": "1102654019878", "FULLNAME": "Skillman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.911951, 39.843931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449705", "POINTID": "1102653994472", "FULLNAME": "Parkersburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.902784, 39.873376 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436919", "POINTID": "1102654014196", "FULLNAME": "James Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.903897, 39.868376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437629", "POINTID": "1102653987241", "FULLNAME": "Lapland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.902784, 39.905043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440302", "POINTID": "1102653993419", "FULLNAME": "North Union", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.903339, 39.965599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047032281", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.908430, 39.993341 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446036", "POINTID": "1102654021987", "FULLNAME": "Wilhite Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.902226, 39.991153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430794", "POINTID": "1102654007359", "FULLNAME": "Ben Hur Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.909728, 40.025318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436682", "POINTID": "1102654014066", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.906115, 40.031985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440627", "POINTID": "1102654017407", "FULLNAME": "Oldtown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.907783, 40.046709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431977", "POINTID": "1102654009182", "FULLNAME": "Calvary Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.905004, 40.055874 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292609", "FULLNAME": "St Clare Medical Ctr", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.904554, 40.065816 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067169763", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.908663, 40.072368 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438510", "POINTID": "1102653989146", "FULLNAME": "Manchester", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.904170, 40.097816 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432442", "POINTID": "1102653972539", "FULLNAME": "Cherry Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.904449, 40.135593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437951", "POINTID": "1102653988110", "FULLNAME": "Linden", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.903891, 40.188092 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12375 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442271", "POINTID": "1102653997008", "FULLNAME": "Romney", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.904170, 40.249478 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434135", "POINTID": "1102654011636", "FULLNAME": "Elmwood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.910004, 40.259480 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292484", "FULLNAME": "Ratcliff Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.906219, 40.272484 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12363 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087165088", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.904972, 40.355035 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087165287", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.903363, 40.353723 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577399823", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.912592, 40.355630 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087164995", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.904752, 40.359595 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087165089", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.901665, 40.355352 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12360 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104474591578", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.912305, 40.380043 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087160738", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.911259, 40.379195 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106092465064", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.905047, 40.372956 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052083539", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.912389, 40.386088 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087160766", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.906630, 40.380427 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081593876", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.901821, 40.381614 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12358 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434143", "POINTID": "1102653977669", "FULLNAME": "Elston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.909736, 40.393079 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12357 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087460876", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.905069, 40.398356 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445775", "POINTID": "1102654002355", "FULLNAME": "West Lafayette", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.908062, 40.425867 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046628114", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.903816, 40.425971 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046628118", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.906839, 40.437275 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046628117", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.909433, 40.443452 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435302", "POINTID": "1102654012722", "FULLNAME": "Grandview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.907786, 40.441421 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445334", "POINTID": "1102654001616", "FULLNAME": "Wabash Shores", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.910841, 40.449198 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105321646239", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.904846, 40.460905 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081909645", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.901783, 40.463323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577446989", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.906236, 40.471008 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081909608", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.901931, 40.467356 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577447899", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.902298, 40.474559 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577451053", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.909100, 40.497025 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137983986", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.906236, 40.496130 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441107", "POINTID": "1102654017837", "FULLNAME": "Pierce Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.911675, 40.498922 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577450532", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.902923, 40.503433 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577451053", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.909100, 40.497025 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12344 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577449613", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.907558, 40.509184 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444500", "POINTID": "1102654020677", "FULLNAME": "Swisher Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.907233, 40.779759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12294 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439950", "POINTID": "1102654016657", "FULLNAME": "Nauvoo Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.912791, 40.923371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442676", "POINTID": "1102654019062", "FULLNAME": "Saint Marks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.902794, 41.085315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440409", "POINTID": "1102654017056", "FULLNAME": "Oak Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.911409, 41.313094 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435860", "POINTID": "1102653982820", "FULLNAME": "Haskell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.901968, 41.483929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435860", "POINTID": "1102653982820", "FULLNAME": "Haskell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.901968, 41.483929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440729", "POINTID": "1102653994243", "FULLNAME": "Otis", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.905860, 41.599206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262959390", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.904951, 41.688593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8473, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446946", "POINTID": "1102653963456", "FULLNAME": "Washington Park Marina", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.904790, 41.725784 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12623 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117908167", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.901754, 38.137145 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435567", "POINTID": "1102654013019", "FULLNAME": "Gwin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.892221, 38.491996 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436518", "POINTID": "1102654013847", "FULLNAME": "Houghton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.897502, 38.650884 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431564", "POINTID": "1102654008515", "FULLNAME": "Brook Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.894447, 38.649772 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439638", "POINTID": "1102653991758", "FULLNAME": "Mt Pleasant", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.892224, 38.651994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12560 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443061", "POINTID": "1102653997760", "FULLNAME": "Scenic Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.893892, 38.678382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12535 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114547210", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.900420, 38.895471 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437724", "POINTID": "1102654014919", "FULLNAME": "Ledgerwood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.891701, 38.891883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12533 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442975", "POINTID": "1102653954438", "FULLNAME": "Sand Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.893895, 38.912270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435175", "POINTID": "1102654012608", "FULLNAME": "Goodwin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.891674, 39.102268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431993", "POINTID": "1102654009190", "FULLNAME": "Calvertville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.901118, 39.121157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434401", "POINTID": "1102653957872", "FULLNAME": "Farmers Ferry", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.892787, 39.166431 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434398", "POINTID": "1102653978500", "FULLNAME": "Farmers", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.891674, 39.175320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269627770", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.900273, 39.260879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441103", "POINTID": "1102654017836", "FULLNAME": "Pickle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.893342, 39.799210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434481", "POINTID": "1102653978855", "FULLNAME": "Fincastle", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.895008, 39.808099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435492", "POINTID": "1102654012922", "FULLNAME": "Grider Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.892508, 39.846988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441714", "POINTID": "1102653995936", "FULLNAME": "Raccoon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.896394, 39.856153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445530", "POINTID": "1102654021568", "FULLNAME": "Wasson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.901118, 39.885876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434535", "POINTID": "1102653978941", "FULLNAME": "Fiskville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.894726, 40.048651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452355", "POINTID": "1102653960086", "FULLNAME": "Linden Conservation Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.893329, 40.227523 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081924429", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.896974, 40.344584 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081924445", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.895094, 40.343676 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12363 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087165284", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.901633, 40.354447 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081736307", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.893624, 40.353958 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087165087", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.901161, 40.357488 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081737225", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.892972, 40.359262 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12360 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087218633", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.894115, 40.378831 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081593876", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.901821, 40.381614 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081946557", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.892473, 40.384856 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081798351", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.892653, 40.380300 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12358 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087460774", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.900278, 40.395951 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12357 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087460893", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.899946, 40.402106 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087460766", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.900032, 40.397324 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103426235448", "FULLNAME": "Williams Ridge Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.896081, 40.398854 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435714", "POINTID": "1102653982385", "FULLNAME": "Happy Hollow Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.900284, 40.442812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081504214", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.901139, 40.454017 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081909645", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.901783, 40.463323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081909608", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.901931, 40.467356 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577448281", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.900316, 40.468215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577447900", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.900327, 40.474393 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104474693732", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.901426, 40.494783 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137986192", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.900844, 40.490488 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577450211", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.897175, 40.502120 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442544", "POINTID": "1102654018920", "FULLNAME": "Saint Henrys Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.901960, 41.085038 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438959", "POINTID": "1102653990164", "FULLNAME": "Medaryville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.891961, 41.080593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00453067", "POINTID": "1102653995951", "FULLNAME": "Radioville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.891129, 41.159759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442957", "POINTID": "1102653997573", "FULLNAME": "San Pierre", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.891963, 41.203648 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442082", "POINTID": "1102653996657", "FULLNAME": "Riverside", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.894184, 41.256148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12253 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446022", "POINTID": "1102654002896", "FULLNAME": "Wilders", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.896132, 41.266705 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449678", "POINTID": "1102653986635", "FULLNAME": "la Crosse", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.891408, 41.317539 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443866", "POINTID": "1102653998897", "FULLNAME": "South Wanatah", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.899189, 41.405871 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445456", "POINTID": "1102654001830", "FULLNAME": "Wanatah", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.898358, 41.430595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401931095", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.894579, 41.437324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435860", "POINTID": "1102653982820", "FULLNAME": "Haskell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.901968, 41.483929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435860", "POINTID": "1102653982820", "FULLNAME": "Haskell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.901968, 41.483929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445865", "POINTID": "1102654002624", "FULLNAME": "Westville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.900581, 41.541427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311128697", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.895692, 41.544126 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046632947", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.891781, 41.542397 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012811997840", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.890681, 41.542425 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445865", "POINTID": "1102654002624", "FULLNAME": "Westville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.900581, 41.541427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046617508", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.901005, 41.555069 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046617461", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.901233, 41.562463 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430666", "POINTID": "1102654007200", "FULLNAME": "Beattys Corner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.892857, 41.614468 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430665", "POINTID": "1102653967137", "FULLNAME": "Beattys Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.893916, 41.622260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045903666", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.900858, 41.672740 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449463", "POINTID": "1102653960395", "FULLNAME": "Marquette Mall", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.896132, 41.681991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292593", "FULLNAME": "St Anthony Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.901190, 41.706001 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438507", "POINTID": "1102653989113", "FULLNAME": "Maltersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.889718, 38.346442 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107029773", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.890038, 38.389038 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12557 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438343", "POINTID": "1102654015200", "FULLNAME": "Love Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.885558, 38.706716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442622", "POINTID": "1102654019001", "FULLNAME": "Saint Joseph Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.883614, 38.773661 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114558951", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.886398, 38.809912 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446062", "POINTID": "1102654022024", "FULLNAME": "Williams Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.881948, 38.808938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12544 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431854", "POINTID": "1102653970758", "FULLNAME": "Burns City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.886948, 38.822549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431854", "POINTID": "1102653970758", "FULLNAME": "Burns City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.886948, 38.822549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110109558982", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.887811, 38.920106 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12531 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433664", "POINTID": "1102654011404", "FULLNAME": "Dowden Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.890561, 38.930047 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439264", "POINTID": "1102653990896", "FULLNAME": "Mineral City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.880006, 38.994214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12513 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444945", "POINTID": "1102654001006", "FULLNAME": "Tulip", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.886674, 39.081990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445384", "POINTID": "1102654021465", "FULLNAME": "Wall Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.881396, 39.106991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432961", "POINTID": "1102653951535", "FULLNAME": "Corbin Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.884453, 39.319766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442883", "POINTID": "1102654019208", "FULLNAME": "Salem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.887790, 39.515044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292432", "FULLNAME": "4 Winds Aerodrome", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.882063, 39.824474 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434490", "POINTID": "1102654011975", "FULLNAME": "Finley Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.880282, 39.966986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438417", "POINTID": "1102654015320", "FULLNAME": "Lutheran Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.889450, 39.981987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067174787", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.889351, 40.019620 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430136", "POINTID": "1102653964948", "FULLNAME": "Ames", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.886948, 40.033375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047037273", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.880559, 40.044458 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047037273", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.880559, 40.044458 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444249", "POINTID": "1102654020470", "FULLNAME": "Stover Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.886948, 40.067817 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729432088", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.888246, 40.280588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12363 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081736451", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.890459, 40.354837 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730315868", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.882031, 40.350046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137983364", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.884477, 40.362894 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12361 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087218773", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.889517, 40.371183 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081737333", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.880245, 40.371097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12360 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137983022", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.889767, 40.376248 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087192307", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.880146, 40.372462 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087219026", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.888943, 40.382394 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087171141", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.882514, 40.383825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12357 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452350", "POINTID": "1102653959709", "FULLNAME": "Lafayette Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.889171, 40.400310 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081835738", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.887522, 40.412955 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110138036485", "FULLNAME": "Tippecanoe County Jail", "MTFCC": "K1237" }, "geometry": { "type": "Point", "coordinates": [ -86.881983, 40.448143 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046628995", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.885430, 40.499391 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12344 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137990066", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.881795, 40.512427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046628931", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.881428, 40.514323 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046628917", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.879695, 40.516179 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12339 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431947", "POINTID": "1102654009077", "FULLNAME": "Cairo Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.883340, 40.547812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439334", "POINTID": "1102654016170", "FULLNAME": "Monon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.887790, 40.866982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446694", "POINTID": "1102653972889", "FULLNAME": "Clarks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.890295, 41.133371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273249471", "FULLNAME": "Little Company Mary Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.888090, 41.192762 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11026263540808", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.887334, 41.202825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430078", "POINTID": "1102654006523", "FULLNAME": "All Saints Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.890574, 41.208648 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942670196", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.889673, 41.541594 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262965655", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.884880, 41.541586 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046632767", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.890169, 41.544146 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262965655", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.884880, 41.541586 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436338", "POINTID": "1102653984064", "FULLNAME": "Holmesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.881138, 41.599761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449464", "POINTID": "1102653957362", "FULLNAME": "Dunes Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.888640, 41.680593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262940494", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.887594, 41.696825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8475, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435470", "POINTID": "1102654012915", "FULLNAME": "Greenwood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.883362, 41.703650 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442838", "POINTID": "1102654019179", "FULLNAME": "Saint Stanislaus Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.881696, 41.701429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443076", "POINTID": "1102653997790", "FULLNAME": "Schley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.871935, 38.045607 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431491", "POINTID": "1102653969392", "FULLNAME": "Bretzville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.873049, 38.299498 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12576 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451485", "POINTID": "1102653998842", "FULLNAME": "South Martin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.874164, 38.544496 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436342", "POINTID": "1102654013737", "FULLNAME": "Holt Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.872504, 38.842827 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435863", "POINTID": "1102654013249", "FULLNAME": "Hasler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.876696, 38.959503 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443704", "POINTID": "1102654019953", "FULLNAME": "Smith-Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.879172, 38.951992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435863", "POINTID": "1102654013249", "FULLNAME": "Hasler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.876696, 38.959503 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439264", "POINTID": "1102653990896", "FULLNAME": "Mineral City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.880006, 38.994214 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439732", "POINTID": "1102654016557", "FULLNAME": "Mount Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.875283, 38.997547 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434571", "POINTID": "1102654012021", "FULLNAME": "Flater Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.876396, 39.017823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438882", "POINTID": "1102654015751", "FULLNAME": "McIndoo Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.874451, 39.176709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434803", "POINTID": "1102653979915", "FULLNAME": "Freedom", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.869175, 39.206987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433438", "POINTID": "1102654011196", "FULLNAME": "Defore Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.874451, 39.218097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443955", "POINTID": "1102654020150", "FULLNAME": "Splinter Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.877324, 39.286134 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442863", "POINTID": "1102654019196", "FULLNAME": "Saint Walley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.870841, 39.318931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430328", "POINTID": "1102653965925", "FULLNAME": "Atkinsonville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.873344, 39.377821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452224", "POINTID": "1102653985406", "FULLNAME": "Jenkinsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.875288, 39.532822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437898", "POINTID": "1102653988020", "FULLNAME": "Limedale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.879177, 39.619210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449622", "POINTID": "1102653969464", "FULLNAME": "Brick Chapel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.869175, 39.711712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047035634", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.876104, 40.036076 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433103", "POINTID": "1102653974261", "FULLNAME": "Crawfordsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.874449, 40.041152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047035892", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.878856, 40.045744 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047037296", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.874111, 40.046031 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440394", "POINTID": "1102654017466", "FULLNAME": "O'Neall Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.872421, 40.343202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137983821", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.879977, 40.360668 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137985373", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.876755, 40.360693 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137982727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.871935, 40.358534 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12361 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081737349", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.877933, 40.371166 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12360 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430119", "POINTID": "1102653964724", "FULLNAME": "Altamont Switch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.874449, 40.378643 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137986246", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.871847, 40.372364 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087171126", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.880025, 40.382779 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087171134", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.879046, 40.384147 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087171167", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.873336, 40.383925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12358 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087080764", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.873440, 40.394389 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12357 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081936331", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.871158, 40.401938 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081936087", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.869457, 40.399487 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437501", "POINTID": "1102653986689", "FULLNAME": "Lafayette", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.875283, 40.416700 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438622", "POINTID": "1102653960380", "FULLNAME": "Market Square Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.871949, 40.430867 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12344 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137990071", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.880081, 40.511676 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137990063", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.879113, 40.512196 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452311", "POINTID": "1102653957591", "FULLNAME": "Edwood Glen Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.878064, 40.508367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046628918", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.879129, 40.517278 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046628958", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.873993, 40.517156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436688", "POINTID": "1102654014077", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.874175, 40.604757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12332 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292545", "FULLNAME": "Shultz /private/ Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.879566, 40.608632 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12326 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432383", "POINTID": "1102653972293", "FULLNAME": "Chalmers", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.869454, 40.663092 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12319 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443708", "POINTID": "1102653998662", "FULLNAME": "Smithson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.872509, 40.717814 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103731135810", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.873319, 40.752400 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12302 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137754091", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.878367, 40.857249 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439333", "POINTID": "1102653991075", "FULLNAME": "Monon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.878901, 40.867816 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12287 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434752", "POINTID": "1102653979808", "FULLNAME": "Francesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.879459, 40.985314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438234", "POINTID": "1102653988461", "FULLNAME": "Lomax", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.871686, 41.258926 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450429", "POINTID": "1102654011476", "FULLNAME": "Eaheart Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.872526, 41.555872 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262960159", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.878265, 41.640137 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262960160", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.878265, 41.638647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8476, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262960159", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.878265, 41.640137 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12613 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434450", "POINTID": "1102653978722", "FULLNAME": "Ferdinand", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.862215, 38.223944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12612 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107413692", "FULLNAME": "18th Street Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -86.857883, 38.232648 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451055", "POINTID": "1102654013744", "FULLNAME": "Holtsglaw Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.858616, 38.598925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437216", "POINTID": "1102654014407", "FULLNAME": "Kelley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.866673, 39.155600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437216", "POINTID": "1102654014407", "FULLNAME": "Kelley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.866673, 39.155600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437881", "POINTID": "1102654014978", "FULLNAME": "Light Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.868062, 39.200876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446258", "POINTID": "1102653955465", "FULLNAME": "Wolfe Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.859452, 39.268654 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445224", "POINTID": "1102654001395", "FULLNAME": "Vandalia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.866120, 39.312538 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440839", "POINTID": "1102654017609", "FULLNAME": "Palestine Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.861676, 39.312820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443924", "POINTID": "1102654020119", "FULLNAME": "Spears Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.862510, 39.352265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269629638", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.858540, 39.466591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067409669", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.859619, 39.520092 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441673", "POINTID": "1102653995818", "FULLNAME": "Putnamville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.865289, 39.574210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435428", "POINTID": "1102653981595", "FULLNAME": "Greencastle", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.864731, 39.644488 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067410906", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.860142, 39.647233 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067437709", "FULLNAME": "County Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.858699, 39.649532 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435830", "POINTID": "1102654013210", "FULLNAME": "Hartman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.867231, 39.784489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047035842", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.862912, 40.045177 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436665", "POINTID": "1102654014000", "FULLNAME": "Hutton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.866115, 40.075873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12363 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577399651", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.863317, 40.351082 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137988054", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.868398, 40.359348 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729433316", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.858860, 40.362283 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081742552", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.857891, 40.357958 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12360 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577394095", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.861392, 40.380173 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577396332", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.866944, 40.376332 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577396327", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.861064, 40.378055 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577396331", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.866005, 40.380241 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577394095", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.861392, 40.380173 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12358 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444613", "POINTID": "1102654000391", "FULLNAME": "Tecumseh", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.868339, 40.392812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087331722", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.868631, 40.409248 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438590", "POINTID": "1102653960364", "FULLNAME": "Mar-Jean Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.860839, 40.418367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081517738", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.867357, 40.429805 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087223938", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.863929, 40.422712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087223722", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.865005, 40.436199 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087223790", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.861673, 40.430579 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087223725", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.864417, 40.439833 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444018", "POINTID": "1102654020182", "FULLNAME": "Springvale Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.860839, 40.449756 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110138036504", "FULLNAME": "Pet Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.868044, 40.504712 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046628305", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.861837, 40.504753 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12344 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046628666", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.860702, 40.512476 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12339 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435851", "POINTID": "1102654013233", "FULLNAME": "Harvey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.858618, 40.547532 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888292396", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.866096, 40.594729 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431585", "POINTID": "1102653969907", "FULLNAME": "Brookston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.867231, 40.602812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12328 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432169", "POINTID": "1102654009377", "FULLNAME": "Carr Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.865010, 40.641980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12327 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432384", "POINTID": "1102654009658", "FULLNAME": "Chalmers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.868341, 40.648091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12323 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436139", "POINTID": "1102654013525", "FULLNAME": "High Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.863621, 40.685314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12317 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431817", "POINTID": "1102654008828", "FULLNAME": "Bunnell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.860566, 40.737813 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12302 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446131", "POINTID": "1102654022054", "FULLNAME": "Wilson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.859179, 40.858649 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12249 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446713", "POINTID": "1102653997193", "FULLNAME": "Runnymede", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.858353, 41.302261 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442683", "POINTID": "1102654019064", "FULLNAME": "Saint Martins Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.868355, 41.340595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450421", "POINTID": "1102654010082", "FULLNAME": "Clinton Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.865858, 41.518372 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262960264", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.858903, 41.628956 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045903702", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.858422, 41.643807 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045903703", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.857899, 41.642520 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046615126", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.859254, 41.696855 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046615022", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.862800, 41.701257 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444853", "POINTID": "1102654000848", "FULLNAME": "Trail Creek", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.859195, 41.698373 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452384", "POINTID": "1102653961972", "FULLNAME": "Pottawattamie Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.861416, 41.719762 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01699783", "POINTID": "1102653995541", "FULLNAME": "Pottawattamie Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.866973, 41.722539 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262957763", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.867440, 41.738524 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262957763", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.867440, 41.738524 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442421", "POINTID": "1102654018797", "FULLNAME": "Rust Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.855268, 38.023384 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12614 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102389715216", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.857543, 38.217318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12613 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107413660", "FULLNAME": "Cnvnt of the Immac Concept", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.855456, 38.225549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12612 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107413692", "FULLNAME": "18th Street Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -86.857883, 38.232648 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431492", "POINTID": "1102654008332", "FULLNAME": "Bretzville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.857494, 38.293387 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435721", "POINTID": "1102654013132", "FULLNAME": "Harbison Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.857218, 38.477553 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451046", "POINTID": "1102653983813", "FULLNAME": "Hindostan Falls", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.850834, 38.624494 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433586", "POINTID": "1102653975935", "FULLNAME": "Doans", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.849448, 38.919215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444604", "POINTID": "1102654020798", "FULLNAME": "Taylor Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.857618, 38.952897 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440869", "POINTID": "1102653994427", "FULLNAME": "Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.849450, 39.016158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436117", "POINTID": "1102654013472", "FULLNAME": "Hicks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.848619, 39.221154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434188", "POINTID": "1102653951965", "FULLNAME": "Emmins Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.847785, 39.274208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432924", "POINTID": "1102653951513", "FULLNAME": "Cooksey Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.850566, 39.365598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12479 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441247", "POINTID": "1102654017909", "FULLNAME": "Pleasant Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.853342, 39.369766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449035", "POINTID": "1102653974780", "FULLNAME": "Cunot", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.854732, 39.456431 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067408208", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.856880, 39.522128 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434654", "POINTID": "1102654012090", "FULLNAME": "Forest Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.857232, 39.628100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434743", "POINTID": "1102653979775", "FULLNAME": "Fox Ridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.848622, 39.632546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067410896", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.851170, 39.647595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067412672", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.852760, 39.655688 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067407850", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.852173, 39.656369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067409581", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.851596, 39.657059 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067407850", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.852173, 39.656369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292546", "FULLNAME": "Timber House Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.855115, 40.284465 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12365 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443980", "POINTID": "1102654020157", "FULLNAME": "Spring Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.849172, 40.330313 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12363 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081742310", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.856067, 40.351949 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081742357", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.849831, 40.354330 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081742332", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.848412, 40.349670 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081742552", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.857891, 40.357958 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081742394", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.849040, 40.355146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12358 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449439", "POINTID": "1102653955852", "FULLNAME": "Ayr-Way Lafayette Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.850006, 40.391978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081931383", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.851980, 40.419923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433957", "POINTID": "1102653977009", "FULLNAME": "Eastwitch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.850006, 40.426977 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087223760", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.857374, 40.438161 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577484331", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.848257, 40.430185 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087223552", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.856746, 40.440035 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087223545", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.850384, 40.442009 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296321469", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.854168, 40.438429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452403", "POINTID": "1102653963073", "FULLNAME": "Tippecanoe Conservation Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.853340, 40.455309 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452403", "POINTID": "1102653963073", "FULLNAME": "Tippecanoe Conservation Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.853340, 40.455309 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00448389", "POINTID": "1102653968148", "FULLNAME": "Birmingham", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.852784, 40.468643 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292539", "FULLNAME": "Wolfelt Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.851942, 40.488052 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444501", "POINTID": "1102654020682", "FULLNAME": "Swisher-Hurtz Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.850561, 40.482811 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046628826", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.854890, 40.505505 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137990746", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.857390, 40.502822 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441609", "POINTID": "1102653950540", "FULLNAME": "Prophet Rock", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.851674, 40.504478 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12344 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046628800", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.858036, 40.512949 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046628684", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.856432, 40.512437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12339 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449614", "POINTID": "1102653965721", "FULLNAME": "Ash Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.847785, 40.547812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504171354", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.847297, 40.583779 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137840326", "FULLNAME": "Rest Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -86.849968, 40.747080 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12287 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442306", "POINTID": "1102654018684", "FULLNAME": "Roseland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.847790, 40.985594 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450466", "POINTID": "1102653995065", "FULLNAME": "Pinhook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.855858, 41.563928 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262959545", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.853847, 41.630306 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401918257", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.847066, 41.628239 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401918243", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.848740, 41.633878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443301", "POINTID": "1102654019536", "FULLNAME": "Sharp Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.855858, 41.644761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262958409", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.850666, 41.738156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438243", "POINTID": "1102653988497", "FULLNAME": "Long Beach", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.856974, 41.738929 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262958412", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.849271, 41.739379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441648", "POINTID": "1102654018187", "FULLNAME": "Purcell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.837212, 38.006164 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434257", "POINTID": "1102653978077", "FULLNAME": "Evanston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.841656, 38.039498 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434257", "POINTID": "1102653978077", "FULLNAME": "Evanston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.841656, 38.039498 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12626 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434887", "POINTID": "1102653980140", "FULLNAME": "Fulda", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.836101, 38.111443 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431292", "POINTID": "1102654007931", "FULLNAME": "Boggs Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.840280, 38.795882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435141", "POINTID": "1102653952173", "FULLNAME": "Gobbler Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.841948, 38.850048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445291", "POINTID": "1102654001554", "FULLNAME": "Vilas", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.840006, 39.170043 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443745", "POINTID": "1102654019991", "FULLNAME": "Snyder Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.838896, 39.166988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439977", "POINTID": "1102654016669", "FULLNAME": "Neeley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.841951, 39.192543 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431880", "POINTID": "1102654008996", "FULLNAME": "Burton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.838617, 39.192264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437692", "POINTID": "1102654014876", "FULLNAME": "Leach Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.843064, 39.205320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12493 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434925", "POINTID": "1102654012339", "FULLNAME": "Galimore Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.842509, 39.255319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446340", "POINTID": "1102654022254", "FULLNAME": "Wright Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.838062, 39.268932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444785", "POINTID": "1102654020952", "FULLNAME": "Tipton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.840564, 39.282542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104469704625", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.846693, 39.299137 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433602", "POINTID": "1102654011358", "FULLNAME": "Doe Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.840843, 39.500601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452226", "POINTID": "1102654002546", "FULLNAME": "Westland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.845843, 39.583377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411042", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.839714, 39.635838 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067410873", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.844939, 39.653881 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067410888", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.838998, 39.653972 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067410838", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.841278, 39.648472 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067410882", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.846358, 39.657325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432854", "POINTID": "1102654010405", "FULLNAME": "Concord Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.836949, 40.287534 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432847", "POINTID": "1102653973698", "FULLNAME": "Concord", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.837504, 40.293367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12369 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432844", "POINTID": "1102654010357", "FULLNAME": "Conarroe Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.844169, 40.304201 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729745052", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.846130, 40.296923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577371494", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.838432, 40.387768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12358 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087471343", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.842528, 40.395220 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12357 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577388471", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.836844, 40.404383 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577388466", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.836788, 40.409912 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577388470", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.837804, 40.405368 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087079579", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.847039, 40.427177 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081937038", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.846631, 40.428153 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081931664", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.839859, 40.427618 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081931099", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.845065, 40.437882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087223450", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.846055, 40.439113 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087223438", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.840586, 40.439192 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010881617336", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.839430, 40.463403 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430581", "POINTID": "1102653955936", "FULLNAME": "Battle Ground Campground", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.845285, 40.505032 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12344 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110138036494", "FULLNAME": "Tippecanoe Battlefield", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -86.844692, 40.505987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137754472", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.843448, 40.582968 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443656", "POINTID": "1102654019923", "FULLNAME": "Smelcer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.841396, 40.590867 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444445", "POINTID": "1102654020629", "FULLNAME": "Sutton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.838349, 41.090315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450428", "POINTID": "1102653976569", "FULLNAME": "Durham", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.837523, 41.592259 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401918257", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.847066, 41.628239 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045903802", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.844067, 41.635109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045903795", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.842941, 41.644713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445536", "POINTID": "1102654001911", "FULLNAME": "Waterford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.845028, 41.671427 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433184", "POINTID": "1102654010927", "FULLNAME": "Cross Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.838360, 41.668929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046615609", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.837611, 41.679108 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440684", "POINTID": "1102653994085", "FULLNAME": "Orchard Highlands", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.835860, 41.682816 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12626 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434887", "POINTID": "1102653980140", "FULLNAME": "Fulda", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.836101, 38.111443 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442481", "POINTID": "1102653997285", "FULLNAME": "Saint Anthony", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.826660, 38.314498 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437213", "POINTID": "1102653985803", "FULLNAME": "Kellerville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.831662, 38.481719 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450981", "POINTID": "1102654012841", "FULLNAME": "Green Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.831665, 38.566164 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12565 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451458", "POINTID": "1102654019732", "FULLNAME": "Sholts Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.831005, 38.638970 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450999", "POINTID": "1102654013058", "FULLNAME": "Hall Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.825276, 38.656441 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450728", "POINTID": "1102653951205", "FULLNAME": "Buck Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.830557, 38.734216 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436029", "POINTID": "1102654013398", "FULLNAME": "Henry Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.832225, 38.781994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442881", "POINTID": "1102654019206", "FULLNAME": "Salem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.833336, 38.869215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437432", "POINTID": "1102653986498", "FULLNAME": "Koleen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.828891, 38.971436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436552", "POINTID": "1102654013860", "FULLNAME": "Howell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.826392, 38.984213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440057", "POINTID": "1102653992589", "FULLNAME": "New Hope", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.827784, 39.183098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12493 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445925", "POINTID": "1102654021850", "FULLNAME": "White Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.826118, 39.249765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435664", "POINTID": "1102653982221", "FULLNAME": "Hancock Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.828897, 39.275321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444258", "POINTID": "1102653954816", "FULLNAME": "Straley Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.829452, 39.287265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434444", "POINTID": "1102654011917", "FULLNAME": "Fender Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.834175, 39.307543 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439604", "POINTID": "1102654016434", "FULLNAME": "Mount Moriah Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.829731, 39.300876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435600", "POINTID": "1102653952364", "FULLNAME": "Hale Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.828341, 39.381155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438773", "POINTID": "1102654015617", "FULLNAME": "Maze Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.831675, 39.400599 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269629786", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.828505, 39.400831 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292409", "FULLNAME": "Clover Knoll Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.830957, 39.531697 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443748", "POINTID": "1102653954721", "FULLNAME": "Snyder Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.831675, 39.548100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440537", "POINTID": "1102654017178", "FULLNAME": "Old Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.831399, 39.583933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439655", "POINTID": "1102654016477", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.834452, 39.689490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445979", "POINTID": "1102654002839", "FULLNAME": "Whitesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.833615, 39.965321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449731", "POINTID": "1102653998605", "FULLNAME": "Smartsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.828615, 40.046986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12376 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110138036495", "FULLNAME": "Purdue Univ Experimental Frm", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.824796, 40.245179 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435097", "POINTID": "1102653980780", "FULLNAME": "Gladens Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.828336, 40.258644 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12365 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446016", "POINTID": "1102654021975", "FULLNAME": "Wildcat Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.832504, 40.331145 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12358 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137982154", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.835195, 40.396254 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12357 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577391429", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.830672, 40.402461 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104474560627", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.829457, 40.399796 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577388465", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.835109, 40.411421 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081931643", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.832842, 40.430377 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081931644", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.830967, 40.427345 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081931667", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.829937, 40.424625 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081931268", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.836112, 40.433637 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081931666", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.834068, 40.430708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577493829", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.835313, 40.453342 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577493864", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.827078, 40.452636 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577493988", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.825560, 40.448892 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010881617283", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.835275, 40.463136 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577493825", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.834958, 40.455762 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577493821", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.828706, 40.455985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137982033", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.831348, 40.514287 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431410", "POINTID": "1102654008192", "FULLNAME": "Bowman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.833625, 41.024482 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292433", "FULLNAME": "Crawford Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.835127, 41.199192 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439426", "POINTID": "1102654016227", "FULLNAME": "Morgan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.835575, 41.403650 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046615619", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.834685, 41.669694 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045903667", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.826665, 41.671481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440684", "POINTID": "1102653994085", "FULLNAME": "Orchard Highlands", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.835860, 41.682816 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444459", "POINTID": "1102654020650", "FULLNAME": "Swan Lake Memorial Gnds", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.833915, 41.693374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262958773", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.832118, 41.717023 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262958774", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.829801, 41.717015 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433339", "POINTID": "1102653975178", "FULLNAME": "Davis", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.826137, 41.714763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471590746", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.833802, 41.722841 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110403303422", "FULLNAME": "Notre Dame Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -86.834894, 41.744130 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446769", "POINTID": "1102653976386", "FULLNAME": "Duneland Beach", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.833363, 41.756151 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438850", "POINTID": "1102654015701", "FULLNAME": "McDaniel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.823044, 38.001164 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12632 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431899", "POINTID": "1102654009014", "FULLNAME": "Butler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.814434, 38.063386 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442675", "POINTID": "1102653997348", "FULLNAME": "Saint Marks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.818047, 38.305608 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439730", "POINTID": "1102654016548", "FULLNAME": "Mount Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.816384, 38.482553 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445820", "POINTID": "1102654021741", "FULLNAME": "West Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.820279, 38.754771 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12542 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431179", "POINTID": "1102654007776", "FULLNAME": "Blankenship Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.815558, 38.835049 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432167", "POINTID": "1102654009365", "FULLNAME": "Carr Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.819168, 38.841160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441630", "POINTID": "1102654018174", "FULLNAME": "Pryor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.818061, 39.130878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445362", "POINTID": "1102654021424", "FULLNAME": "Waker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.819450, 39.179487 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440631", "POINTID": "1102654017408", "FULLNAME": "Oliphant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.821395, 39.201988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441507", "POINTID": "1102653995547", "FULLNAME": "Pottersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.814174, 39.207265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431834", "POINTID": "1102654008882", "FULLNAME": "Burkett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.817229, 39.217266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445924", "POINTID": "1102654021849", "FULLNAME": "White Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.813895, 39.236431 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443138", "POINTID": "1102654019417", "FULLNAME": "Scott Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.816674, 39.246431 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446215", "POINTID": "1102654022112", "FULLNAME": "Witham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.815008, 39.268099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444599", "POINTID": "1102653954884", "FULLNAME": "Taylor Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.814729, 39.278375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292367", "FULLNAME": "Miller Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.822403, 39.292115 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437175", "POINTID": "1102654014362", "FULLNAME": "Kaufman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.824176, 39.366154 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432692", "POINTID": "1102654010127", "FULLNAME": "Cloyd Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.814729, 39.361988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269614817", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.820641, 39.401998 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432235", "POINTID": "1102653971771", "FULLNAME": "Cataract", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.816398, 39.427544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432235", "POINTID": "1102653971771", "FULLNAME": "Cataract", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.816398, 39.427544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067408499", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.817546, 39.519316 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067412881", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.813836, 39.518062 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292474", "FULLNAME": "Putnam County Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.813807, 39.633556 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446679", "POINTID": "1102653971699", "FULLNAME": "Cary", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.823063, 39.706991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292454", "FULLNAME": "Hampton Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.821778, 39.728041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441762", "POINTID": "1102654018279", "FULLNAME": "Randel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.817229, 39.744769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434956", "POINTID": "1102653980287", "FULLNAME": "Garfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.823892, 40.083095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437358", "POINTID": "1102653986199", "FULLNAME": "Kirkpatrick", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.819171, 40.206425 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12376 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110138036495", "FULLNAME": "Purdue Univ Experimental Frm", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.824796, 40.245179 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108936128589", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.820322, 40.288692 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12369 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443435", "POINTID": "1102654019726", "FULLNAME": "Shoemaker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.816669, 40.302812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12360 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577367381", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.815934, 40.372707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730223129", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.823648, 40.441856 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108880703989", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.822473, 40.514376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444697", "POINTID": "1102654000566", "FULLNAME": "Thomaston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.814185, 41.378372 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438385", "POINTID": "1102654015284", "FULLNAME": "Lows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.820303, 41.658094 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292588", "FULLNAME": "Michigan City Muni-Phillips Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.821242, 41.703316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446711", "POINTID": "1102653990336", "FULLNAME": "Merrick", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.815306, 41.737540 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446768", "POINTID": "1102653990432", "FULLNAME": "Michiana Shores", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.816695, 41.755873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438749", "POINTID": "1102653989792", "FULLNAME": "Maxville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.813321, 38.000054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12632 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440025", "POINTID": "1102653992318", "FULLNAME": "New Boston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.810288, 38.058635 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311362004", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -86.811977, 38.166630 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442728", "POINTID": "1102653997388", "FULLNAME": "Saint Meinrad", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.809075, 38.171183 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12618 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439353", "POINTID": "1102653991215", "FULLNAME": "Monte Cassino Shrine", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.806101, 38.180888 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12587 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434274", "POINTID": "1102654011764", "FULLNAME": "Ewing Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.807216, 38.448386 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433738", "POINTID": "1102653976297", "FULLNAME": "Dubois Xroad", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.811940, 38.481165 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12569 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114562404", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.810489, 38.601723 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451777", "POINTID": "1102653954621", "FULLNAME": "Shell Mound", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.807777, 38.657830 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12560 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451456", "POINTID": "1102653998343", "FULLNAME": "Shoals Overlook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.804443, 38.679494 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12555 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450862", "POINTID": "1102653976143", "FULLNAME": "Dover Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.802777, 38.725051 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445346", "POINTID": "1102654021389", "FULLNAME": "Waggoner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.811669, 38.873381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432943", "POINTID": "1102654010579", "FULLNAME": "Cooper Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.808338, 38.965603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446730", "POINTID": "1102653996468", "FULLNAME": "Ridgeport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.803617, 39.045598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440133", "POINTID": "1102654016818", "FULLNAME": "Newark Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.808617, 39.124767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438187", "POINTID": "1102654015136", "FULLNAME": "Livingston Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.803338, 39.153376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432003", "POINTID": "1102654009212", "FULLNAME": "Camden Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.811948, 39.169209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441629", "POINTID": "1102654018175", "FULLNAME": "Pryor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.811116, 39.177266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441507", "POINTID": "1102653995547", "FULLNAME": "Pottersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.814174, 39.207265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445924", "POINTID": "1102654021849", "FULLNAME": "White Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.813895, 39.236431 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438890", "POINTID": "1102654015765", "FULLNAME": "McKee Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.811395, 39.246431 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269630689", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.802844, 39.293786 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434989", "POINTID": "1102653952130", "FULLNAME": "Gaston Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.813340, 39.352821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12477 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443669", "POINTID": "1102654019936", "FULLNAME": "Smith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.805285, 39.391155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067408845", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.803507, 39.494001 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444423", "POINTID": "1102653954856", "FULLNAME": "Sunset Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.809453, 39.511155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067412881", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.813836, 39.518062 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102203065305", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.807900, 39.524681 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433076", "POINTID": "1102653974195", "FULLNAME": "Cradick Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.805905, 39.543942 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436597", "POINTID": "1102653952786", "FULLNAME": "Hughes Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.811677, 39.567267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292474", "FULLNAME": "Putnam County Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.813807, 39.633556 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103673253459", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.803504, 39.653179 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430412", "POINTID": "1102653966281", "FULLNAME": "Bainbridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.811951, 39.761156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432163", "POINTID": "1102653971612", "FULLNAME": "Carpentersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.805561, 39.805602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435815", "POINTID": "1102654013206", "FULLNAME": "Harshbarger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.806948, 39.945042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433319", "POINTID": "1102653975134", "FULLNAME": "Darlington Woods", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.805280, 40.119760 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440239", "POINTID": "1102653993271", "FULLNAME": "North Crane", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.810279, 40.338645 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12357 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292516", "FULLNAME": "Indiana University Health Arnett Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.807882, 40.400519 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577352443", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.809072, 40.411333 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577352441", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.808107, 40.408785 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052088996", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.808177, 40.418268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105575725754", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.810505, 40.468547 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440303", "POINTID": "1102654017000", "FULLNAME": "North Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.810561, 40.492532 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577491415", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.806860, 40.521778 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12342 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577491430", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.808405, 40.523230 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12309 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435543", "POINTID": "1102653981892", "FULLNAME": "Guernsey", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.812787, 40.800314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12303 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430698", "POINTID": "1102654007250", "FULLNAME": "Bedford Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.809177, 40.847537 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437447", "POINTID": "1102654014656", "FULLNAME": "Koster Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.808625, 41.031982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016954922557", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.812999, 41.590791 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016954922557", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.812999, 41.590791 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046615720", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.809531, 41.647256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8482, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401978746", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.809266, 41.669460 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401978729", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.807782, 41.670161 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444924", "POINTID": "1102654000990", "FULLNAME": "Troy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.797767, 37.995332 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110115952852", "FULLNAME": "Crippled Childrens Home", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.796112, 37.991844 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436578", "POINTID": "1102654013893", "FULLNAME": "Huff Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.792767, 38.011999 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442653", "POINTID": "1102653997329", "FULLNAME": "Saint Josephs Shrine", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.797767, 38.168110 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12587 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435727", "POINTID": "1102654013133", "FULLNAME": "Hardin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.802496, 38.451165 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451555", "POINTID": "1102654000547", "FULLNAME": "Thales", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.798607, 38.510332 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12576 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451649", "POINTID": "1102654003467", "FULLNAME": "Yenne", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.793607, 38.547830 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451638", "POINTID": "1102654003090", "FULLNAME": "Windom", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.797775, 38.573942 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12572 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451638", "POINTID": "1102654003090", "FULLNAME": "Windom", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.797775, 38.573942 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451438", "POINTID": "1102653954501", "FULLNAME": "Schoolhouse Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.793886, 38.617828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12566 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451347", "POINTID": "1102653995228", "FULLNAME": "Pleasant Vly", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.801388, 38.631996 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12561 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451337", "POINTID": "1102653950488", "FULLNAME": "Pinnacle Rock", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.793234, 38.675773 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12560 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451067", "POINTID": "1102653952775", "FULLNAME": "House Rock", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.795554, 38.680606 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12555 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450862", "POINTID": "1102653976143", "FULLNAME": "Dover Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.802777, 38.725051 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438067", "POINTID": "1102654015073", "FULLNAME": "Little Hickory Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.794723, 38.788105 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445356", "POINTID": "1102654021416", "FULLNAME": "Wagoner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.795836, 38.918382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446731", "POINTID": "1102654000301", "FULLNAME": "Tanner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.793336, 39.018102 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441095", "POINTID": "1102654017830", "FULLNAME": "Philpot Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.794449, 39.106435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430284", "POINTID": "1102654006755", "FULLNAME": "Arthur Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.794449, 39.136435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430020", "POINTID": "1102653964157", "FULLNAME": "Adel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.795838, 39.191988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434764", "POINTID": "1102654012185", "FULLNAME": "Franklin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.800562, 39.218654 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269630790", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.794873, 39.264403 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269630689", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.802844, 39.293786 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433235", "POINTID": "1102653974711", "FULLNAME": "Cuba", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.798062, 39.378099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432688", "POINTID": "1102653973193", "FULLNAME": "Cloverdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.793897, 39.514766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438823", "POINTID": "1102653953434", "FULLNAME": "McCoy Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.800843, 39.535877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434576", "POINTID": "1102654012022", "FULLNAME": "Flatwoods Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.801675, 39.620322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434015", "POINTID": "1102653977151", "FULLNAME": "Edgewood Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.799172, 39.639490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434015", "POINTID": "1102653977151", "FULLNAME": "Edgewood Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.799172, 39.639490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430413", "POINTID": "1102654006886", "FULLNAME": "Bainbridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.794728, 39.759769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442122", "POINTID": "1102653996715", "FULLNAME": "Roachdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.802227, 39.848934 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067437710", "FULLNAME": "School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.801967, 39.844980 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067437708", "FULLNAME": "Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -86.794634, 39.850517 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067437707", "FULLNAME": "Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -86.802080, 39.855930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437497", "POINTID": "1102653986682", "FULLNAME": "Ladoga", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.801117, 39.913655 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437967", "POINTID": "1102653988156", "FULLNAME": "Linnsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.800004, 40.000319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438449", "POINTID": "1102653988912", "FULLNAME": "Mace", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.796394, 40.010319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292629", "FULLNAME": "Ropkey Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.794143, 40.057516 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12383 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441059", "POINTID": "1102654017805", "FULLNAME": "Peterson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.799446, 40.179480 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444172", "POINTID": "1102654020408", "FULLNAME": "Stingley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.800559, 40.272533 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577355773", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.798639, 40.421626 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577355605", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.793486, 40.418779 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577355772", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.798714, 40.423459 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105575726818", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.795211, 40.474726 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137982978", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.798320, 40.490135 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12331 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443977", "POINTID": "1102654020156", "FULLNAME": "Spring Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.802230, 40.620869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442846", "POINTID": "1102654019186", "FULLNAME": "Saint Thomas Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.797236, 41.204205 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444392", "POINTID": "1102653999840", "FULLNAME": "Summit", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.797523, 41.643095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045903562", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.795903, 41.664623 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045903563", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.796815, 41.665054 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045903562", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.795903, 41.664623 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472882094", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.795632, 41.686426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430129", "POINTID": "1102653964855", "FULLNAME": "Ambler", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.796691, 41.715874 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442827", "POINTID": "1102654019178", "FULLNAME": "Saint Pius Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.786655, 37.991999 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436585", "POINTID": "1102654013899", "FULLNAME": "Huffman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.785005, 38.101106 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12623 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437622", "POINTID": "1102654014808", "FULLNAME": "Lanman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.783600, 38.135609 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437481", "POINTID": "1102653986616", "FULLNAME": "Kyana", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.782213, 38.305055 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12565 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451429", "POINTID": "1102653954404", "FULLNAME": "Sampson Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.788610, 38.638941 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443428", "POINTID": "1102653998330", "FULLNAME": "Shoals", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.791110, 38.666440 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444113", "POINTID": "1102654020300", "FULLNAME": "Steep Hollow Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.787778, 38.743662 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445469", "POINTID": "1102654021530", "FULLNAME": "Wards Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.790833, 38.807272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431551", "POINTID": "1102654008490", "FULLNAME": "Brock Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.789444, 38.856716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431551", "POINTID": "1102654008490", "FULLNAME": "Brock Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.789444, 38.856716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437667", "POINTID": "1102654014850", "FULLNAME": "Lawrence Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.787226, 39.023935 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439270", "POINTID": "1102654016108", "FULLNAME": "Minks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.780850, 39.160861 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016953869612", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.786357, 39.515408 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435583", "POINTID": "1102653952343", "FULLNAME": "Hadden Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.790565, 39.565322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441935", "POINTID": "1102654018461", "FULLNAME": "Rice Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.790836, 40.134760 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105575726817", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.791010, 40.474744 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105575727615", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.785233, 40.479357 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087069420", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.787060, 40.487850 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12340 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441583", "POINTID": "1102654018135", "FULLNAME": "Pretty Prairie Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.790284, 40.545867 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12327 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435848", "POINTID": "1102654013230", "FULLNAME": "Harvey and Phebus Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.785284, 40.647536 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12309 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137840325", "FULLNAME": "Tcc Golf Course", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -86.789436, 40.800568 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452404", "POINTID": "1102653963093", "FULLNAME": "Tippecanoe Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.781397, 40.805315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292455", "FULLNAME": "Chesak Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.786794, 41.255025 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292652", "FULLNAME": "Flying U Ranch Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.790965, 41.453362 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110402039100", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.784254, 41.634572 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045903555", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.791147, 41.664402 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045903560", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.787867, 41.659856 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440484", "POINTID": "1102653993738", "FULLNAME": "Oakwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.786440, 41.678333 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401977866", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.788041, 41.681516 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436582", "POINTID": "1102653984521", "FULLNAME": "Huffman", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.776934, 38.101998 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433172", "POINTID": "1102654010912", "FULLNAME": "Crooks Thom Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.780268, 38.165609 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444583", "POINTID": "1102654020781", "FULLNAME": "Taylor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.772769, 38.208111 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433779", "POINTID": "1102654011445", "FULLNAME": "Dungan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.778324, 38.307833 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432294", "POINTID": "1102653971988", "FULLNAME": "Celestine", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.779158, 38.384776 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109097696860", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.777658, 38.390026 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12578 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451466", "POINTID": "1102654019811", "FULLNAME": "Simmons Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.778605, 38.530331 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12566 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451128", "POINTID": "1102653986679", "FULLNAME": "Lacy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.776387, 38.633664 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451089", "POINTID": "1102653985081", "FULLNAME": "Ironton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.775274, 38.662274 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451205", "POINTID": "1102654015627", "FULLNAME": "McBrides Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.776111, 38.731439 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12544 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431519", "POINTID": "1102654008413", "FULLNAME": "Bridges Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.773890, 38.819772 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441245", "POINTID": "1102654017902", "FULLNAME": "Pleasant Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.774445, 38.870604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442184", "POINTID": "1102654018653", "FULLNAME": "Robison Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.778892, 38.983659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431093", "POINTID": "1102654007658", "FULLNAME": "Bingham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.774172, 39.066435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439270", "POINTID": "1102654016108", "FULLNAME": "Minks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.780850, 39.160861 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431458", "POINTID": "1102653969224", "FULLNAME": "Braysville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.774451, 39.211709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442288", "POINTID": "1102654018678", "FULLNAME": "Rose Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.775285, 39.314210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270161886", "FULLNAME": "Spangler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.778096, 39.413423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102203057358", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.781027, 39.515952 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102203057312", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.780311, 39.515952 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440614", "POINTID": "1102654017370", "FULLNAME": "Old Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.773340, 39.681712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440614", "POINTID": "1102654017370", "FULLNAME": "Old Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.773340, 39.681712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442123", "POINTID": "1102654018630", "FULLNAME": "Roachdale Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.778061, 39.848100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444215", "POINTID": "1102654020443", "FULLNAME": "Stoner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.770561, 39.908101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436818", "POINTID": "1102654014130", "FULLNAME": "Inlow Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.770561, 39.931988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433318", "POINTID": "1102653975113", "FULLNAME": "Darlington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.771948, 40.110039 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446405", "POINTID": "1102654022344", "FULLNAME": "Yorktown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.772224, 40.260589 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444184", "POINTID": "1102653999561", "FULLNAME": "Stockwell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.770835, 40.286145 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434324", "POINTID": "1102654011830", "FULLNAME": "Fairview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.776669, 40.292256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577355898", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.778986, 40.418338 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072922945", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.775038, 40.429836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105575730754", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.779885, 40.482144 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12338 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080677483", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.772745, 40.563045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12337 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080677477", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.777715, 40.566847 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444002", "POINTID": "1102653999246", "FULLNAME": "Springboro", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.775840, 40.594478 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436704", "POINTID": "1102654014034", "FULLNAME": "Idle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.776122, 41.032539 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136976243", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.777817, 41.160311 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136976250", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.777090, 41.162794 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440268", "POINTID": "1102653993318", "FULLNAME": "North Judson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.775751, 41.215043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435685", "POINTID": "1102653982334", "FULLNAME": "Hanna", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.780019, 41.411985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445130", "POINTID": "1102654001165", "FULLNAME": "Union Mills", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.777522, 41.493097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110402038813", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.776878, 41.576438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472874168", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.776446, 41.664941 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472874199", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.774260, 41.664974 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444009", "POINTID": "1102653999265", "FULLNAME": "Springfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.777527, 41.715320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12645 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451548", "POINTID": "1102654000427", "FULLNAME": "Tell City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.767764, 37.951442 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12617 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430024", "POINTID": "1102653964197", "FULLNAME": "Adyeville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.769435, 38.190888 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444637", "POINTID": "1102654020825", "FULLNAME": "Tenn Beard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.760822, 38.193666 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436782", "POINTID": "1102653984910", "FULLNAME": "Indian Springs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.764934, 38.796528 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433760", "POINTID": "1102654011437", "FULLNAME": "Duke Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.763614, 38.980882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430712", "POINTID": "1102654007273", "FULLNAME": "Beech Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.766669, 39.003380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444201", "POINTID": "1102654020427", "FULLNAME": "Stone Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.764274, 39.042428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102639869789", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.763858, 39.188658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431163", "POINTID": "1102654007742", "FULLNAME": "Blair Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.761672, 39.264488 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442072", "POINTID": "1102654018559", "FULLNAME": "River Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.760283, 39.274767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442085", "POINTID": "1102654018568", "FULLNAME": "Riverside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.767506, 39.283099 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443879", "POINTID": "1102653998983", "FULLNAME": "Southport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.761672, 39.276988 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442072", "POINTID": "1102654018559", "FULLNAME": "River Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.760283, 39.274767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443934", "POINTID": "1102653999094", "FULLNAME": "Spencer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.762504, 39.286709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432160", "POINTID": "1102653971598", "FULLNAME": "Carp", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.760841, 39.385044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269615370", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.759454, 39.407017 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292398", "FULLNAME": "Sanders Gyroport Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.762968, 39.512436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292398", "FULLNAME": "Sanders Gyroport Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.762968, 39.512436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439484", "POINTID": "1102653953619", "FULLNAME": "Moser Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.767509, 39.549489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445702", "POINTID": "1102654021668", "FULLNAME": "Wesley Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.765283, 39.725046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432740", "POINTID": "1102654010213", "FULLNAME": "Coffman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.767783, 39.790323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435441", "POINTID": "1102654012868", "FULLNAME": "Greenlawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.767504, 40.111705 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435441", "POINTID": "1102654012868", "FULLNAME": "Greenlawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.767504, 40.111705 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12363 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292527", "FULLNAME": "Wyandotte Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.762609, 40.348594 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12360 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137989913", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.767361, 40.380102 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081734464", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.769065, 40.378886 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433370", "POINTID": "1102653975243", "FULLNAME": "Dayton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.768893, 40.374201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081734477", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.769547, 40.380807 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445064", "POINTID": "1102654021198", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.766948, 40.446978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445064", "POINTID": "1102654021198", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.766948, 40.446978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449626", "POINTID": "1102653970272", "FULLNAME": "Buck Creek", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.761394, 40.487811 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436332", "POINTID": "1102654013729", "FULLNAME": "Hollywood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.761115, 40.490033 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441956", "POINTID": "1102653996390", "FULLNAME": "Richey Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.759175, 40.668648 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12323 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437566", "POINTID": "1102653987036", "FULLNAME": "Lakewood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.759731, 40.686425 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12320 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292536", "FULLNAME": "White County Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.766758, 40.708814 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435156", "POINTID": "1102653981038", "FULLNAME": "Golden Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.760565, 40.710315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12317 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137757396", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.768957, 40.737968 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439369", "POINTID": "1102653991280", "FULLNAME": "Monticello", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.764730, 40.745314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137840288", "FULLNAME": "County Memorial Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.758998, 40.757908 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440358", "POINTID": "1102653993562", "FULLNAME": "Norway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.759454, 40.778370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445669", "POINTID": "1102654002189", "FULLNAME": "Wellsboro", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.765358, 41.497023 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450427", "POINTID": "1102653976079", "FULLNAME": "Door Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.768912, 41.574763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046617207", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.761745, 41.632551 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292643", "FULLNAME": "Norm's Airpark", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.766525, 41.683916 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12647 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434445", "POINTID": "1102653978669", "FULLNAME": "Fenn Haven", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.756654, 37.931442 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110115952853", "FULLNAME": "County Memorial Highway", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.757502, 37.928251 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450983", "POINTID": "1102654012908", "FULLNAME": "Greenwood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.750541, 37.964499 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12629 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430355", "POINTID": "1102654006813", "FULLNAME": "Avery Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.754433, 38.088111 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444068", "POINTID": "1102654020245", "FULLNAME": "Stapleton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.753878, 38.208665 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433060", "POINTID": "1102654010780", "FULLNAME": "Cox Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.754436, 38.290610 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443084", "POINTID": "1102653997803", "FULLNAME": "Schnellville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.756102, 38.341166 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430401", "POINTID": "1102654006860", "FULLNAME": "Bailey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.757494, 38.425889 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450824", "POINTID": "1102653974683", "FULLNAME": "Crystal", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.753881, 38.491998 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450974", "POINTID": "1102653952228", "FULLNAME": "Goss Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.758328, 38.510332 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12574 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451410", "POINTID": "1102653997231", "FULLNAME": "Rusk", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.756938, 38.557275 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12572 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451606", "POINTID": "1102654021447", "FULLNAME": "Walker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.753328, 38.578941 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450661", "POINTID": "1102653950866", "FULLNAME": "Bear Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.750831, 38.776160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449812", "POINTID": "1102653971106", "FULLNAME": "Cale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.751389, 38.795882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12513 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443761", "POINTID": "1102653998731", "FULLNAME": "Solsberry", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.756112, 39.083378 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109097664075", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.748162, 39.085991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269636719", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.758352, 39.285212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269626833", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.756271, 39.345288 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433516", "POINTID": "1102653975749", "FULLNAME": "Devore", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.752786, 39.429767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440103", "POINTID": "1102654016781", "FULLNAME": "New Providence Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.752231, 39.565045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439601", "POINTID": "1102653991703", "FULLNAME": "Mt Meridian", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.757507, 39.601989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292442", "FULLNAME": "Owens Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.754841, 39.610309 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432146", "POINTID": "1102654009335", "FULLNAME": "Carmel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.758341, 39.651713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434479", "POINTID": "1102653978845", "FULLNAME": "Fillmore", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.753339, 39.667546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434480", "POINTID": "1102654011963", "FULLNAME": "Fillmore Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.757783, 39.674213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292421", "FULLNAME": "Way West Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.755120, 39.773087 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12368 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442887", "POINTID": "1102654019220", "FULLNAME": "Salem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.756112, 40.309200 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446346", "POINTID": "1102654003364", "FULLNAME": "Wyandot", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.749447, 40.345311 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12363 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446347", "POINTID": "1102654022283", "FULLNAME": "Wyandot Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.755281, 40.346977 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12358 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137986215", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.754908, 40.393768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439326", "POINTID": "1102653991046", "FULLNAME": "Monitor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.756389, 40.419755 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430135", "POINTID": "1102654006593", "FULLNAME": "Americus Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.756394, 40.519478 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12342 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430134", "POINTID": "1102653964934", "FULLNAME": "Americus", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.758060, 40.525868 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12341 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433247", "POINTID": "1102654011060", "FULLNAME": "Cunningham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.748060, 40.533368 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441956", "POINTID": "1102653996390", "FULLNAME": "Richey Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.759175, 40.668648 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443007", "POINTID": "1102653997619", "FULLNAME": "Sandy Beach", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.753384, 40.664494 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12324 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435088", "POINTID": "1102653980739", "FULLNAME": "Gingrich Addition", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.754173, 40.673925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12323 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442337", "POINTID": "1102653997120", "FULLNAME": "Roth Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.749130, 40.686343 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443059", "POINTID": "1102653997750", "FULLNAME": "Scarlet Oaks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.754173, 40.695593 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431474", "POINTID": "1102653969287", "FULLNAME": "Breezy Pt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.753063, 40.691981 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12321 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431929", "POINTID": "1102653970999", "FULLNAME": "C and C Beach", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.756397, 40.703369 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445420", "POINTID": "1102654001795", "FULLNAME": "Walnut Gardens", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.754452, 40.698926 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12320 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438374", "POINTID": "1102653988731", "FULLNAME": "Lower Sunset Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.754516, 40.707047 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445175", "POINTID": "1102654001213", "FULLNAME": "Upper Sunset Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.754452, 40.725037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019665352256", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.753953, 40.748062 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137840288", "FULLNAME": "County Memorial Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.758998, 40.757908 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12304 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436596", "POINTID": "1102654013916", "FULLNAME": "Hughes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.756120, 40.839204 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436151", "POINTID": "1102654013536", "FULLNAME": "Highland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.757515, 41.213096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450456", "POINTID": "1102653988988", "FULLNAME": "Magee", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.751131, 41.530875 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262963269", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.750826, 41.590394 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450451", "POINTID": "1102653960007", "FULLNAME": "Laporte Fair Grounds", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.751689, 41.594763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452313", "POINTID": "1102653957715", "FULLNAME": "Elks Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.755579, 41.640040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452313", "POINTID": "1102653957715", "FULLNAME": "Elks Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.755579, 41.640040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430173", "POINTID": "1102653965072", "FULLNAME": "Andry", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.758081, 41.717820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12649 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450757", "POINTID": "1102653971391", "FULLNAME": "Cannelton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.744431, 37.911442 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450857", "POINTID": "1102654011353", "FULLNAME": "Dodson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.744986, 38.029499 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451190", "POINTID": "1102654015376", "FULLNAME": "Mackey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.745265, 38.037833 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12631 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450831", "POINTID": "1102654011141", "FULLNAME": "Davis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.738597, 38.065610 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451277", "POINTID": "1102654016882", "FULLNAME": "Niles Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.736932, 38.071444 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12576 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437079", "POINTID": "1102654014271", "FULLNAME": "Jones Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.746660, 38.543387 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12575 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432978", "POINTID": "1102654010622", "FULLNAME": "Cornel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.739716, 38.555054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12565 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450619", "POINTID": "1102654006349", "FULLNAME": "Acre Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.738608, 38.636442 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450764", "POINTID": "1102654009690", "FULLNAME": "Chandler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.746389, 38.849770 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451260", "POINTID": "1102654016588", "FULLNAME": "Mountain Spring Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.742779, 38.862271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450860", "POINTID": "1102654011363", "FULLNAME": "Dogtrot Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.736945, 38.890605 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12534 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451399", "POINTID": "1102654018635", "FULLNAME": "Roberts Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.742500, 38.903382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12531 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451584", "POINTID": "1102653955171", "FULLNAME": "Tunnel Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.745003, 38.927547 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12513 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109097664075", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.748162, 39.085991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452063", "POINTID": "1102653990066", "FULLNAME": "McVille", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.738608, 39.153099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01964853", "POINTID": "1102653956056", "FULLNAME": "Boone Cave", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.742505, 39.248654 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445691", "POINTID": "1102654021666", "FULLNAME": "Wesley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.737782, 39.879210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431397", "POINTID": "1102654008156", "FULLNAME": "Bowers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.743058, 40.196425 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12365 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137989346", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.737508, 40.334378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12363 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103938060323", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.738249, 40.351329 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12358 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444673", "POINTID": "1102653954931", "FULLNAME": "The Mound", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.742782, 40.390589 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577356966", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.745826, 40.420833 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446444", "POINTID": "1102654022401", "FULLNAME": "Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.742224, 40.424756 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12341 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433247", "POINTID": "1102654011060", "FULLNAME": "Cunningham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.748060, 40.533368 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430808", "POINTID": "1102654007383", "FULLNAME": "Benham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.742229, 40.601979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12332 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292059", "FULLNAME": "de Ford Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.737063, 40.608911 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12324 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446392", "POINTID": "1102654022320", "FULLNAME": "Yeoman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.744616, 40.672546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12320 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440936", "POINTID": "1102653994567", "FULLNAME": "Patton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.740564, 40.708092 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12319 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262908887", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.747443, 40.714724 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12300 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137840292", "FULLNAME": "Buffalo Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.747400, 40.880329 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12299 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137840292", "FULLNAME": "Buffalo Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.747400, 40.880329 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12293 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437548", "POINTID": "1102653986961", "FULLNAME": "Lakeside", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.737787, 40.934204 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450493", "POINTID": "1102653998803", "FULLNAME": "South Laporte", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.739743, 41.575042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262963265", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.746644, 41.589665 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262963295", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.743723, 41.591864 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441160", "POINTID": "1102654017844", "FULLNAME": "Pine Lake Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.743077, 41.636430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12650 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046596709", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.735805, 37.908287 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12649 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451421", "POINTID": "1102654019094", "FULLNAME": "Saint Michaels Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.733319, 37.916443 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110115884288", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.726608, 37.915651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450810", "POINTID": "1102653951546", "FULLNAME": "Cox Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.729709, 37.938110 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12645 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452338", "POINTID": "1102653959000", "FULLNAME": "Hoosier Heights Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.729709, 37.951165 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451365", "POINTID": "1102654018070", "FULLNAME": "Powell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.727209, 37.967554 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451112", "POINTID": "1102653952986", "FULLNAME": "Keiser Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.735263, 37.973111 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451081", "POINTID": "1102653952836", "FULLNAME": "Ikel Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.727485, 37.993945 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451278", "POINTID": "1102654016897", "FULLNAME": "Nixon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.734987, 38.010055 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12633 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451037", "POINTID": "1102654013470", "FULLNAME": "Hicks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.728874, 38.049221 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12631 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451277", "POINTID": "1102654016882", "FULLNAME": "Niles Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.736932, 38.071444 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451821", "POINTID": "1102654016452", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.734711, 38.168389 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12612 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451460", "POINTID": "1102653998374", "FULLNAME": "Siberia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.733600, 38.238111 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12611 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451460", "POINTID": "1102653998374", "FULLNAME": "Siberia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.733600, 38.238111 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452527", "POINTID": "1102654021263", "FULLNAME": "Uno-Paton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.731388, 38.851715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450860", "POINTID": "1102654011363", "FULLNAME": "Dogtrot Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.736945, 38.890605 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451310", "POINTID": "1102653994312", "FULLNAME": "Owensburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.729722, 38.923103 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450921", "POINTID": "1102654012073", "FULLNAME": "Flynn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.733890, 38.999492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432522", "POINTID": "1102653972778", "FULLNAME": "Cincinnati", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.728891, 39.020046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431822", "POINTID": "1102654008836", "FULLNAME": "Burch Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.728335, 39.056436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12513 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443762", "POINTID": "1102654020001", "FULLNAME": "Solsberry Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.734169, 39.087269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443762", "POINTID": "1102654020001", "FULLNAME": "Solsberry Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.734169, 39.087269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438189", "POINTID": "1102654015137", "FULLNAME": "Livingston Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.730283, 39.164212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431600", "POINTID": "1102654008553", "FULLNAME": "Brown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.728059, 39.171432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434814", "POINTID": "1102653979960", "FULLNAME": "Freeman", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.733617, 39.195322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270161890", "FULLNAME": "McCormicks Creek State Park", "MTFCC": "K2184" }, "geometry": { "type": "Point", "coordinates": [ -86.726345, 39.288793 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452128", "POINTID": "1102653961023", "FULLNAME": "Murdy Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.731396, 39.320322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442273", "POINTID": "1102653997014", "FULLNAME": "Romona", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.730261, 39.327312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269615484", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.735094, 39.418854 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445394", "POINTID": "1102654001768", "FULLNAME": "Wallace Junction", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.726951, 39.463656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067408909", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.726683, 39.612640 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067408905", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.726646, 39.614755 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411210", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.727831, 39.721679 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411182", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.726962, 39.727010 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292390", "FULLNAME": "Oleo Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.728445, 39.735822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435533", "POINTID": "1102654012953", "FULLNAME": "Groveland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.728617, 39.760323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440085", "POINTID": "1102653992686", "FULLNAME": "New Maysville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.729172, 39.790602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439339", "POINTID": "1102653991111", "FULLNAME": "Monroe", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.735280, 40.286421 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12361 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430424", "POINTID": "1102654006915", "FULLNAME": "Baker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.733059, 40.366699 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435952", "POINTID": "1102653983019", "FULLNAME": "Heath", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.733335, 40.461146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105575732094", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.726313, 40.504170 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12332 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292059", "FULLNAME": "de Ford Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.737063, 40.608911 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442076", "POINTID": "1102654018567", "FULLNAME": "River View Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.736398, 40.745314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12311 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433266", "POINTID": "1102654011061", "FULLNAME": "Cutler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.726120, 40.787260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443556", "POINTID": "1102653998531", "FULLNAME": "Sitka", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.735288, 40.825594 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431873", "POINTID": "1102654008929", "FULLNAME": "Burroughs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.727788, 41.054761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292672", "FULLNAME": "la Porte Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.733249, 41.571903 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401918661", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.726007, 41.589354 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045903546", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.735014, 41.592929 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110402035743", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.728303, 41.594095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401999152", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.728437, 41.650641 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444019", "POINTID": "1102653999298", "FULLNAME": "Springville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.736690, 41.685318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451206", "POINTID": "1102653953416", "FULLNAME": "McCallister Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.723041, 37.973111 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451391", "POINTID": "1102654018467", "FULLNAME": "Richards Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.723320, 38.002556 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12623 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450712", "POINTID": "1102653969664", "FULLNAME": "Bristow", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.721659, 38.140056 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12609 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451491", "POINTID": "1102654020126", "FULLNAME": "Spencer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.716654, 38.262555 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430154", "POINTID": "1102654006616", "FULLNAME": "Anderson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.722215, 38.569775 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12569 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435900", "POINTID": "1102654013264", "FULLNAME": "Hawkins Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.724438, 38.604220 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450658", "POINTID": "1102654007130", "FULLNAME": "Baxter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.719441, 38.667552 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451635", "POINTID": "1102654002998", "FULLNAME": "Willow Vly", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.719720, 38.693941 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12558 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451635", "POINTID": "1102654002998", "FULLNAME": "Willow Vly", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.719720, 38.693941 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450778", "POINTID": "1102654009960", "FULLNAME": "Clarke Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.716941, 38.736161 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450710", "POINTID": "1102654008419", "FULLNAME": "Bridges Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.725557, 38.875883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019665352020", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.724055, 39.047307 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438188", "POINTID": "1102654015139", "FULLNAME": "Livingston Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.721115, 39.198378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102640340607", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.723467, 39.270043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437820", "POINTID": "1102654014958", "FULLNAME": "Liberty Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.717228, 39.652268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411204", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.721844, 39.722744 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411419", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.715171, 39.722259 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411187", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.726157, 39.726401 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411481", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.723430, 39.727841 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411150", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.716805, 39.732198 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411341", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.723202, 39.734044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435532", "POINTID": "1102653981845", "FULLNAME": "Groveland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.720004, 39.760602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440107", "POINTID": "1102654016786", "FULLNAME": "New Ross Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.715560, 39.953099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441192", "POINTID": "1102654017875", "FULLNAME": "Pisgah Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.716670, 40.011707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12387 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432683", "POINTID": "1102654010116", "FULLNAME": "Clouser Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.721391, 40.145870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431396", "POINTID": "1102653969025", "FULLNAME": "Bowers", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.724725, 40.156981 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445061", "POINTID": "1102654021191", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.715557, 40.216980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12375 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449638", "POINTID": "1102653972898", "FULLNAME": "Clarks Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.725001, 40.246978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137988282", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.721115, 40.274248 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12366 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440139", "POINTID": "1102654016819", "FULLNAME": "Newcomer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.718872, 40.324753 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105575732093", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.724087, 40.504163 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12327 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443603", "POINTID": "1102653998584", "FULLNAME": "Sleeth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.717505, 40.649202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446390", "POINTID": "1102654003473", "FULLNAME": "Yeoman", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.724173, 40.667814 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443085", "POINTID": "1102654019367", "FULLNAME": "Schock Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.720283, 40.693091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12311 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433266", "POINTID": "1102654011061", "FULLNAME": "Cutler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.726120, 40.787260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12309 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445468", "POINTID": "1102654021529", "FULLNAME": "Warden Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.725009, 40.803094 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12297 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103900424571", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.721788, 40.900369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12296 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432554", "POINTID": "1102654009953", "FULLNAME": "Clark Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.715565, 40.905593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292406", "FULLNAME": "Sommers Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.723177, 41.076413 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446765", "POINTID": "1102653987614", "FULLNAME": "Lena Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.717236, 41.194483 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401976958", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.721203, 41.545099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401918661", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.726007, 41.589354 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401958792", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.725857, 41.592008 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450474", "POINTID": "1102654018991", "FULLNAME": "Saint Johns Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.720855, 41.599763 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401955068", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.717306, 41.599272 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450476", "POINTID": "1102654019041", "FULLNAME": "Saint Josephs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.720576, 41.598931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292614", "FULLNAME": "IV Health la Porte Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.725650, 41.610503 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401999177", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.724765, 41.651475 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442326", "POINTID": "1102654018703", "FULLNAME": "Rossburg Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.715021, 41.681709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450692", "POINTID": "1102654007969", "FULLNAME": "Bolin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.705263, 37.938389 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12622 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451135", "POINTID": "1102654014822", "FULLNAME": "Lasher Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.706929, 38.146444 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451544", "POINTID": "1102654020782", "FULLNAME": "Taylor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.713320, 38.267279 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107075022", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.709112, 38.432808 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431878", "POINTID": "1102654008960", "FULLNAME": "Burton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.708047, 38.505886 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12579 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446184", "POINTID": "1102654022075", "FULLNAME": "Wininger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.714436, 38.521444 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439945", "POINTID": "1102653992084", "FULLNAME": "Natchez", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.710469, 38.617260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451382", "POINTID": "1102654018312", "FULLNAME": "Rector Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.706111, 38.887548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451255", "POINTID": "1102653960984", "FULLNAME": "Mt Zion Campground", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.710000, 38.941993 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450852", "POINTID": "1102654011330", "FULLNAME": "Dishman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.710834, 38.970326 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451047", "POINTID": "1102653983950", "FULLNAME": "Hobbieville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.706389, 38.999215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436571", "POINTID": "1102654013890", "FULLNAME": "Hudson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.708337, 39.135601 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436024", "POINTID": "1102653983202", "FULLNAME": "Hendricksville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.703892, 39.136158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942412757", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.707645, 39.283219 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104264156052", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.707564, 39.284598 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942412757", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.707645, 39.283219 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432830", "POINTID": "1102654010341", "FULLNAME": "Combes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.712585, 39.440949 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441701", "POINTID": "1102653995898", "FULLNAME": "Quincy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.712505, 39.453656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439163", "POINTID": "1102654016066", "FULLNAME": "Mill Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.712505, 39.577545 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430776", "POINTID": "1102653967472", "FULLNAME": "Belle Union", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.706116, 39.573102 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411419", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.715171, 39.722259 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411416", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.712848, 39.720346 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411413", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.709453, 39.721757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411165", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.713157, 39.730838 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411469", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.708873, 39.728540 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411464", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.705097, 39.725196 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411118", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.713353, 39.737728 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411381", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.709715, 39.744222 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411107", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.709898, 39.740947 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411084", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.703933, 39.747190 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431005", "POINTID": "1102654007599", "FULLNAME": "Biddle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.710005, 39.819488 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436118", "POINTID": "1102654013473", "FULLNAME": "Hicks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.713060, 39.890044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439658", "POINTID": "1102654016484", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.708879, 39.916968 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440106", "POINTID": "1102653992849", "FULLNAME": "New Ross", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.714447, 39.964764 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430695", "POINTID": "1102653967257", "FULLNAME": "Beckville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.709723, 40.010596 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067176002", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.712387, 40.121182 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12368 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436321", "POINTID": "1102654013707", "FULLNAME": "Holladay Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.714168, 40.306422 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444466", "POINTID": "1102654020655", "FULLNAME": "Swank Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.704169, 40.410312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441066", "POINTID": "1102653994860", "FULLNAME": "Pettit", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.709168, 40.417533 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432745", "POINTID": "1102653973445", "FULLNAME": "Colburn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.713057, 40.518646 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12295 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136970860", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.709922, 40.920831 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433469", "POINTID": "1102653975605", "FULLNAME": "Denham", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.713623, 41.151984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436050", "POINTID": "1102654013409", "FULLNAME": "Hepner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.713623, 41.255039 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262968138", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.708039, 41.545999 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401954807", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.710303, 41.600842 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441685", "POINTID": "1102654018208", "FULLNAME": "Quaker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.714745, 41.629486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442326", "POINTID": "1102654018703", "FULLNAME": "Rossburg Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.715021, 41.681709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8491, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443412", "POINTID": "1102654019698", "FULLNAME": "Shippeeburg Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.708495, 41.735710 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12633 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451003", "POINTID": "1102654013085", "FULLNAME": "Hammack Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.698595, 38.049223 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12631 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451471", "POINTID": "1102654019879", "FULLNAME": "Slaughter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.702763, 38.073666 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12613 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451118", "POINTID": "1102653986278", "FULLNAME": "Kitterman Cors", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.697487, 38.222555 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451600", "POINTID": "1102654021372", "FULLNAME": "Waddle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.703045, 38.303390 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450947", "POINTID": "1102654012391", "FULLNAME": "Garland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.695822, 38.299222 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450684", "POINTID": "1102653968136", "FULLNAME": "Birdseye", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.695822, 38.316723 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450622", "POINTID": "1102654006400", "FULLNAME": "Adkins Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.696379, 38.372833 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436212", "POINTID": "1102653983675", "FULLNAME": "Hillham", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.700548, 38.513944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12579 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436212", "POINTID": "1102653983675", "FULLNAME": "Hillham", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.700548, 38.513944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12576 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434190", "POINTID": "1102654011662", "FULLNAME": "Emmons Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.701382, 38.539776 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451249", "POINTID": "1102653991710", "FULLNAME": "Mt Olive", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.694164, 38.798662 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450934", "POINTID": "1102654012220", "FULLNAME": "Freeman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.696945, 38.992548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104261471264", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.693496, 39.076047 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443908", "POINTID": "1102654020100", "FULLNAME": "Sparks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.693590, 39.071266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434029", "POINTID": "1102654011558", "FULLNAME": "Edwards Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.701114, 39.091991 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017719479555", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.695771, 39.090238 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436024", "POINTID": "1102653983202", "FULLNAME": "Hendricksville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.703892, 39.136158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435523", "POINTID": "1102654012951", "FULLNAME": "Gross Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.697503, 39.176990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017732494919", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.703774, 39.237634 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439425", "POINTID": "1102654016224", "FULLNAME": "Moreland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.693338, 39.248932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017738742302", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.701449, 39.265275 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436145", "POINTID": "1102653983489", "FULLNAME": "Highets Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.704169, 39.281992 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051947751", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.699164, 39.283350 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051947751", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.699164, 39.283350 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411407", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.703157, 39.719965 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411404", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.703053, 39.717565 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411143", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.703021, 39.732594 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411475", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.701497, 39.730589 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411356", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.704244, 39.739437 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411362", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.701722, 39.740976 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411143", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.703021, 39.732594 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411399", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.696919, 39.734673 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411084", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.703933, 39.747190 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411365", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.699612, 39.742977 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411362", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.701722, 39.740976 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430495", "POINTID": "1102653966707", "FULLNAME": "Barnard", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.700558, 39.848656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438220", "POINTID": "1102653988424", "FULLNAME": "Log Cabin Xroad", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.700279, 40.025318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443286", "POINTID": "1102653998165", "FULLNAME": "Shannondale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.695556, 40.054761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444466", "POINTID": "1102654020655", "FULLNAME": "Swank Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.704169, 40.410312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441211", "POINTID": "1102653995115", "FULLNAME": "Pittsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.701669, 40.592812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12329 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441311", "POINTID": "1102654017937", "FULLNAME": "Pleasant Run Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.701116, 40.634481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444820", "POINTID": "1102654000782", "FULLNAME": "Toto", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.698069, 41.259483 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431480", "POINTID": "1102653969309", "FULLNAME": "Brems", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.697514, 41.339207 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401930947", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.699890, 41.481323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450442", "POINTID": "1102653986108", "FULLNAME": "Kingsbury", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.700019, 41.527542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401918390", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.703128, 41.606863 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401938795", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.701543, 41.613279 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8492, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437568", "POINTID": "1102653987085", "FULLNAME": "Lalimere", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.700301, 41.717264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450700", "POINTID": "1102653951086", "FULLNAME": "Boyd Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.683596, 37.962832 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450772", "POINTID": "1102653951361", "FULLNAME": "Chilton Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.687762, 37.981166 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292366", "FULLNAME": "Perry County Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.692415, 38.018858 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451379", "POINTID": "1102653996062", "FULLNAME": "Ranger", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.685541, 38.095890 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450663", "POINTID": "1102654007177", "FULLNAME": "Beard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.685264, 38.177557 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12617 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451435", "POINTID": "1102653997706", "FULLNAME": "Sassafras", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.690264, 38.188390 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12613 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451048", "POINTID": "1102654013662", "FULLNAME": "Hobbs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.691098, 38.224224 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451284", "POINTID": "1102653993553", "FULLNAME": "Norton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.683046, 38.494498 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442171", "POINTID": "1102654018643", "FULLNAME": "Robinson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.690269, 38.507276 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442258", "POINTID": "1102653996897", "FULLNAME": "Roland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.681938, 38.595332 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451588", "POINTID": "1102654021176", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.692104, 38.645247 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12561 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450889", "POINTID": "1102654011609", "FULLNAME": "Elliott Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.691106, 38.672274 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451604", "POINTID": "1102654021411", "FULLNAME": "Wagner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.692219, 38.855605 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451408", "POINTID": "1102654018767", "FULLNAME": "Rush Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.688057, 38.962270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432152", "POINTID": "1102654009351", "FULLNAME": "Carmichael Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.685557, 39.026158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015772109565", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.689162, 39.069888 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103937379281", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.686072, 39.115802 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449746", "POINTID": "1102654002782", "FULLNAME": "Whitehall", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.684446, 39.174212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436451", "POINTID": "1102654013793", "FULLNAME": "Hopewell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.684170, 39.221156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01964854", "POINTID": "1102654011410", "FULLNAME": "Dowell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.683336, 39.242267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432390", "POINTID": "1102654009683", "FULLNAME": "Chambersville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.686375, 39.283265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432390", "POINTID": "1102654009683", "FULLNAME": "Chambersville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.686375, 39.283265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051948781", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.687582, 39.292378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438101", "POINTID": "1102654015090", "FULLNAME": "Little Mount Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.681949, 39.395324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292757", "FULLNAME": "Pam's Place Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.687225, 39.501077 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431595", "POINTID": "1102654008566", "FULLNAME": "Brown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.689725, 39.951986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431595", "POINTID": "1102654008566", "FULLNAME": "Brown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.689725, 39.951986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452278", "POINTID": "1102653955709", "FULLNAME": "Advance Conservation Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.685002, 39.969208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12373 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00429983", "POINTID": "1102654006321", "FULLNAME": "Abbot Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.686946, 40.265035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439294", "POINTID": "1102654016121", "FULLNAME": "Mitchell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.682228, 40.771426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12293 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436422", "POINTID": "1102654013775", "FULLNAME": "Hoover Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.688617, 40.935594 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449839", "POINTID": "1102653984869", "FULLNAME": "Indian Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.683347, 41.325318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437334", "POINTID": "1102653986120", "FULLNAME": "Kingsford Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.691683, 41.480598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444845", "POINTID": "1102654000827", "FULLNAME": "Tracy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.682518, 41.485318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450460", "POINTID": "1102653991153", "FULLNAME": "Monroe Manor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.688352, 41.601153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110402027708", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.685530, 41.648379 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110402027715", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.686927, 41.647605 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110402027708", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.685530, 41.648379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401979198", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.689465, 41.680645 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401999631", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.684352, 41.676219 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401963193", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.689478, 41.682470 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8493, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444619", "POINTID": "1102654000397", "FULLNAME": "Tee Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.690023, 41.716987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451387", "POINTID": "1102654018452", "FULLNAME": "Rhodes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.678317, 38.096724 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442258", "POINTID": "1102653996897", "FULLNAME": "Roland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.681938, 38.595332 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12555 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451075", "POINTID": "1102654013982", "FULLNAME": "Huron Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.680552, 38.721717 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450745", "POINTID": "1102654009049", "FULLNAME": "Byers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.676944, 38.983382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437208", "POINTID": "1102654014401", "FULLNAME": "Keller Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.672779, 39.092824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445968", "POINTID": "1102654021902", "FULLNAME": "Whitehall Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.680557, 39.170879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432737", "POINTID": "1102654010184", "FULLNAME": "Coffey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.672781, 39.215044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439537", "POINTID": "1102654016337", "FULLNAME": "Mount Carmel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.671113, 39.296710 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269617182", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.672862, 39.351637 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12477 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438100", "POINTID": "1102654015089", "FULLNAME": "Little Mount Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.681670, 39.392546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438101", "POINTID": "1102654015090", "FULLNAME": "Little Mount Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.681949, 39.395324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292739", "FULLNAME": "Jack Oak Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.675673, 39.482253 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093822", "POINTID": "1102654013336", "FULLNAME": "Hebron Presbyterian Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.672776, 39.652499 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094088", "POINTID": "1102654018810", "FULLNAME": "Ryner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.678055, 39.762777 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094094", "POINTID": "1102654021308", "FULLNAME": "Vannice Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.678334, 39.802501 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094004", "POINTID": "1102654006333", "FULLNAME": "Abner-Ragan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.681665, 39.815834 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093786", "POINTID": "1102654017585", "FULLNAME": "Page Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.678055, 39.843610 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093791", "POINTID": "1102654022398", "FULLNAME": "Zimmerman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.672221, 39.861111 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093788", "POINTID": "1102654018481", "FULLNAME": "Richardson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.671110, 39.869445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093783", "POINTID": "1102654014018", "FULLNAME": "Hypes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.680275, 39.897222 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441461", "POINTID": "1102654018045", "FULLNAME": "Porter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.675836, 39.940876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438935", "POINTID": "1102654015787", "FULLNAME": "McKendra Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.681112, 40.199201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441221", "POINTID": "1102654017888", "FULLNAME": "Plainview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.672500, 40.206980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446766", "POINTID": "1102653978813", "FULLNAME": "Fickle", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.675024, 40.261150 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441677", "POINTID": "1102653995843", "FULLNAME": "Pyrmont", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.679723, 40.467533 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12340 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292049", "FULLNAME": "Delphi Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.681480, 40.542997 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12336 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442627", "POINTID": "1102654019035", "FULLNAME": "Saint Josephs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.678336, 40.574758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433461", "POINTID": "1102653975528", "FULLNAME": "Delphi", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.675002, 40.587535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439294", "POINTID": "1102654016121", "FULLNAME": "Mitchell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.682228, 40.771426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12288 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442636", "POINTID": "1102654019040", "FULLNAME": "Saint Josephs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.673339, 40.978371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430054", "POINTID": "1102653964359", "FULLNAME": "Aldine", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.674455, 41.200873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103692173325", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.681592, 41.597846 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103692173292", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.680514, 41.599960 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401987991", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.674662, 41.631841 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401918374", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.675705, 41.627511 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401987991", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.674662, 41.631841 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401975564", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.678060, 41.666474 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401975574", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.676081, 41.666572 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401967181", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.681590, 41.674811 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451168", "POINTID": "1102654015164", "FULLNAME": "Log Church Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.659982, 37.955056 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451187", "POINTID": "1102653953289", "FULLNAME": "Lutgring Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.662165, 37.963697 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450792", "POINTID": "1102654010348", "FULLNAME": "Comstock Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.667766, 38.206446 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12613 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451591", "POINTID": "1102654001182", "FULLNAME": "Uniontown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.660819, 38.225334 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12612 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452122", "POINTID": "1102653979620", "FULLNAME": "Fosters Ridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.662487, 38.232835 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12609 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451462", "POINTID": "1102654019798", "FULLNAME": "Sigler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.668350, 38.259567 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450832", "POINTID": "1102654011142", "FULLNAME": "Davis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.661656, 38.307277 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450690", "POINTID": "1102654007872", "FULLNAME": "Blunk Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.670544, 38.310611 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450832", "POINTID": "1102654011142", "FULLNAME": "Davis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.661656, 38.307277 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451388", "POINTID": "1102653996379", "FULLNAME": "Riceville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.665545, 38.324500 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451388", "POINTID": "1102653996379", "FULLNAME": "Riceville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.665545, 38.324500 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451436", "POINTID": "1102653997744", "FULLNAME": "Scarlet", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.667495, 38.657830 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12557 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438181", "POINTID": "1102654015130", "FULLNAME": "Little York Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.664995, 38.707829 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12555 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451074", "POINTID": "1102653984662", "FULLNAME": "Huron", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.670550, 38.722274 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451602", "POINTID": "1102654021380", "FULLNAME": "Waggner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.665360, 38.860120 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431336", "POINTID": "1102654008062", "FULLNAME": "Boone Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.667221, 38.881715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114260626", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.668678, 38.989903 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444059", "POINTID": "1102653999355", "FULLNAME": "Stanford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.666669, 39.089770 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434146", "POINTID": "1102653977687", "FULLNAME": "Elwren", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.669724, 39.108658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439537", "POINTID": "1102654016337", "FULLNAME": "Mount Carmel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.671113, 39.296710 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435238", "POINTID": "1102653981135", "FULLNAME": "Gosport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.666948, 39.350878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435239", "POINTID": "1102654012657", "FULLNAME": "Gosport Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.666240, 39.359918 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435239", "POINTID": "1102654012657", "FULLNAME": "Gosport Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.666240, 39.359918 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452135", "POINTID": "1102653956653", "FULLNAME": "Cave Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.667782, 39.404767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430309", "POINTID": "1102654006782", "FULLNAME": "Asher Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.667227, 39.413657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438530", "POINTID": "1102654015400", "FULLNAME": "Mannan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.666948, 39.471156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445448", "POINTID": "1102654021509", "FULLNAME": "Walters Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.670282, 39.520878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445448", "POINTID": "1102654021509", "FULLNAME": "Walters Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.670282, 39.520878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447638", "POINTID": "1102653969680", "FULLNAME": "Broad Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.669447, 39.585878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431268", "POINTID": "1102653968700", "FULLNAME": "Board Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.670003, 39.592823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093772", "POINTID": "1102654010168", "FULLNAME": "Coatesville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.668887, 39.680278 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432714", "POINTID": "1102653973292", "FULLNAME": "Coatesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.670282, 39.687824 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093776", "POINTID": "1102654021675", "FULLNAME": "West Branch Friends Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.664445, 39.688611 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264122471", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.667790, 39.692687 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441898", "POINTID": "1102653996315", "FULLNAME": "Reno", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.670282, 39.710325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093780", "POINTID": "1102654012027", "FULLNAME": "Fleece Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.667497, 39.851110 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093788", "POINTID": "1102654018481", "FULLNAME": "Richardson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.671110, 39.869445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093787", "POINTID": "1102654017753", "FULLNAME": "Pennington Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.664998, 39.882777 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432758", "POINTID": "1102653973482", "FULLNAME": "Colfax", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.667224, 40.195036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433346", "POINTID": "1102654011154", "FULLNAME": "Davis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.670558, 40.219478 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439866", "POINTID": "1102653991939", "FULLNAME": "Mulberry", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.665279, 40.344477 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434027", "POINTID": "1102653977197", "FULLNAME": "Edna Mills", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.667776, 40.417533 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442170", "POINTID": "1102654018647", "FULLNAME": "Robinson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.663890, 40.585590 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444095", "POINTID": "1102654020279", "FULLNAME": "State View Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.670003, 40.758375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12295 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436753", "POINTID": "1102654014106", "FULLNAME": "Indian Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.666395, 40.921427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12291 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442635", "POINTID": "1102654019039", "FULLNAME": "Saint Josephs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.661951, 40.948928 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442056", "POINTID": "1102653996560", "FULLNAME": "Ripley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.660288, 41.100595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292395", "FULLNAME": "Graves Landing Strp", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.665400, 41.116136 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292478", "FULLNAME": "Starke County Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.663528, 41.329624 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450492", "POINTID": "1102653959627", "FULLNAME": "Kingsbury Industrial Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.666685, 41.508374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435497", "POINTID": "1102654012924", "FULLNAME": "Griffin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.665019, 41.634764 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443658", "POINTID": "1102653998617", "FULLNAME": "Smith", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.669190, 41.710877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435970", "POINTID": "1102654013344", "FULLNAME": "Heckman Memorial Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.665856, 41.752543 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436073", "POINTID": "1102653983299", "FULLNAME": "Hesston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.660856, 41.752821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12649 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452037", "POINTID": "1102653975956", "FULLNAME": "Dodd", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.651927, 37.912278 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451168", "POINTID": "1102654015164", "FULLNAME": "Log Church Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.659982, 37.955056 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450928", "POINTID": "1102654012148", "FULLNAME": "Frakes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.652761, 38.003947 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451144", "POINTID": "1102653987997", "FULLNAME": "Lilly Dale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.651372, 38.011724 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450807", "POINTID": "1102654010751", "FULLNAME": "Covey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.650817, 38.016724 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450948", "POINTID": "1102653980395", "FULLNAME": "Gatchel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.650538, 38.046724 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12629 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451418", "POINTID": "1102654018950", "FULLNAME": "Saint Johns Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.658871, 38.091166 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12612 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450893", "POINTID": "1102654011699", "FULLNAME": "Enlow Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.650819, 38.233945 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12610 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451461", "POINTID": "1102654019797", "FULLNAME": "Sigler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.656098, 38.253389 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12578 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439590", "POINTID": "1102654016421", "FULLNAME": "Mount Lebanon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.652769, 38.526721 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451342", "POINTID": "1102654017914", "FULLNAME": "Pleasant Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.657498, 38.868938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450709", "POINTID": "1102654008401", "FULLNAME": "Bridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.650275, 38.890605 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451354", "POINTID": "1102653995384", "FULLNAME": "Popcorn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.656943, 38.975882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450980", "POINTID": "1102654012806", "FULLNAME": "Graves Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.658611, 38.992271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452229", "POINTID": "1102653970454", "FULLNAME": "Buenavista", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.655556, 39.033103 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431821", "POINTID": "1102654008838", "FULLNAME": "Burch Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.654454, 39.066993 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444170", "POINTID": "1102653999537", "FULLNAME": "Stinesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.652225, 39.298655 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445208", "POINTID": "1102654021292", "FULLNAME": "Van Buskirk Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.649446, 39.333378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443485", "POINTID": "1102653998386", "FULLNAME": "Silex", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.659724, 39.360600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292733", "FULLNAME": "Shearer Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.651782, 39.487809 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445052", "POINTID": "1102654007353", "FULLNAME": "Belle Union Branch Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.653338, 39.564490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440128", "POINTID": "1102654016813", "FULLNAME": "New Winchester Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.650280, 39.749489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440128", "POINTID": "1102654016813", "FULLNAME": "New Winchester Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.650280, 39.749489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440127", "POINTID": "1102653992978", "FULLNAME": "New Winchester", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.650836, 39.760602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093789", "POINTID": "1102654018711", "FULLNAME": "Roundtown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.650275, 39.829166 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093777", "POINTID": "1102654006379", "FULLNAME": "Adams Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.659443, 39.878611 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443379", "POINTID": "1102654019654", "FULLNAME": "Shilo Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.656390, 40.215867 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12365 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452415", "POINTID": "1102653963746", "FULLNAME": "Wildcat Conservation Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.656390, 40.335034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436703", "POINTID": "1102653984747", "FULLNAME": "Idaville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.649449, 40.756982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12297 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435944", "POINTID": "1102653983009", "FULLNAME": "Headlee", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.658617, 40.897816 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12288 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441634", "POINTID": "1102653995787", "FULLNAME": "Pulaski", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.658340, 40.975316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12285 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452366", "POINTID": "1102653960962", "FULLNAME": "Moss Creek Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.657785, 41.000871 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442056", "POINTID": "1102653996560", "FULLNAME": "Ripley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.660288, 41.100595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451554", "POINTID": "1102654020856", "FULLNAME": "Terry Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.648038, 38.035057 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12625 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451133", "POINTID": "1102654014807", "FULLNAME": "Lanman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.640262, 38.125058 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451220", "POINTID": "1102654016075", "FULLNAME": "Miller Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.645541, 38.169502 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451625", "POINTID": "1102654002872", "FULLNAME": "Wickliffe", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.641099, 38.368390 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12578 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110115583752", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.638964, 38.529009 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12577 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110115582092", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.641917, 38.535255 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450933", "POINTID": "1102654012219", "FULLNAME": "Freeman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.640828, 38.646162 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451629", "POINTID": "1102654002934", "FULLNAME": "Williams", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.647217, 38.804494 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450912", "POINTID": "1102654011918", "FULLNAME": "Ferguson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.648886, 38.882272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451178", "POINTID": "1102654015228", "FULLNAME": "Lowder Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.644444, 38.962548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114944866", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.643537, 39.115867 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114990347", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.639487, 39.240864 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114993279", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.639484, 39.239952 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103676437961", "FULLNAME": "Junior High School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.638717, 39.233624 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108479050494", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.639543, 39.244412 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430040", "POINTID": "1102653964304", "FULLNAME": "Alaska", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.641392, 39.470324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434166", "POINTID": "1102653977700", "FULLNAME": "Eminence", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.641392, 39.521435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02095538", "POINTID": "1102654017915", "FULLNAME": "Pleasant Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.643001, 39.664800 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02095538", "POINTID": "1102654017915", "FULLNAME": "Pleasant Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.643001, 39.664800 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292386", "FULLNAME": "Dragons Den Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.644444, 39.745555 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052039984", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.642773, 39.743496 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094085", "POINTID": "1102654016803", "FULLNAME": "New Winchester Baptist Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.645833, 39.761111 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094082", "POINTID": "1102654011309", "FULLNAME": "Dickerson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.646665, 39.809445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093785", "POINTID": "1102654016986", "FULLNAME": "North Salem Baptist Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.647775, 39.864722 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440289", "POINTID": "1102653993399", "FULLNAME": "North Salem", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.642502, 39.859766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093784", "POINTID": "1102654014501", "FULLNAME": "Kidd Farm Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.644720, 39.895555 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066059341", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.638009, 39.928619 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433062", "POINTID": "1102654010813", "FULLNAME": "Cox Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.638334, 40.088371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442574", "POINTID": "1102654018978", "FULLNAME": "Saint Johns Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.646388, 40.453921 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12340 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449495", "POINTID": "1102653982461", "FULLNAME": "Harley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.639168, 40.539757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433462", "POINTID": "1102654011237", "FULLNAME": "Delphi Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.640278, 40.591702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12331 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446181", "POINTID": "1102654022070", "FULLNAME": "Wingard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.644170, 40.621701 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12310 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437718", "POINTID": "1102654014909", "FULLNAME": "Leazenby Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.642784, 40.793926 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430759", "POINTID": "1102654007338", "FULLNAME": "Bell Center Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.647507, 40.868927 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430758", "POINTID": "1102653967439", "FULLNAME": "Bell Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.639173, 40.868649 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432313", "POINTID": "1102654009601", "FULLNAME": "Center Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.641121, 41.127262 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443795", "POINTID": "1102653998763", "FULLNAME": "South Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.640016, 41.476432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8497, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445070", "POINTID": "1102654001160", "FULLNAME": "Union Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.639737, 41.484209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12656 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444792", "POINTID": "1102654000739", "FULLNAME": "Tobinsport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.635539, 37.852556 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12653 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450864", "POINTID": "1102653951791", "FULLNAME": "Drinkwater Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.627203, 37.880333 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12645 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452515", "POINTID": "1102654018947", "FULLNAME": "Saint Johns Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.628316, 37.952002 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12629 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451553", "POINTID": "1102654000525", "FULLNAME": "Terry", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.633039, 38.087279 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12621 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450634", "POINTID": "1102653965356", "FULLNAME": "Apalona", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.632208, 38.154501 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451533", "POINTID": "1102654020666", "FULLNAME": "Swift Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.628045, 38.423111 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292375", "FULLNAME": "French Lick Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.636942, 38.506222 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12578 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110115583759", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.637736, 38.528062 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430033", "POINTID": "1102653953639", "FULLNAME": "Mt Airie", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.636381, 38.573665 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12560 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450694", "POINTID": "1102653968788", "FULLNAME": "Bonds", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.629437, 38.681163 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451775", "POINTID": "1102653952527", "FULLNAME": "Haystack Rocks", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.635273, 38.863105 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435747", "POINTID": "1102654013155", "FULLNAME": "Harmony Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.634445, 39.105881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103734946846", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.631229, 39.223352 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102384801919", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.632674, 39.232083 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114990351", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.637669, 39.240831 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114997038", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.637465, 39.239921 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114942580", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.631666, 39.238203 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114985338", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.627975, 39.232637 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104741519571", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.637615, 39.244244 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102571996052", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.632597, 39.243322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060855914", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.628284, 39.282511 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060855913", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.633018, 39.291818 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060855913", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.633018, 39.291818 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439704", "POINTID": "1102653991843", "FULLNAME": "Mt Tabor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.633334, 39.311434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452910", "POINTID": "1102653950611", "FULLNAME": "Arganbright Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.637779, 39.364213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292359", "FULLNAME": "Shenandoah Flying Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.634560, 39.416144 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437808", "POINTID": "1102653987810", "FULLNAME": "Lewisville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.631947, 39.471156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445915", "POINTID": "1102654021836", "FULLNAME": "Whitaker-Patrick Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.627224, 39.536434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444163", "POINTID": "1102653999519", "FULLNAME": "Stilesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.633597, 39.638127 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093824", "POINTID": "1102654020374", "FULLNAME": "Stilesville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.630054, 39.641126 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094083", "POINTID": "1102654013519", "FULLNAME": "Higgins Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.637500, 39.776111 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094092", "POINTID": "1102654021108", "FULLNAME": "Turner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.627500, 39.791943 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094087", "POINTID": "1102654018633", "FULLNAME": "Robbins Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.627221, 39.813889 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434321", "POINTID": "1102654011823", "FULLNAME": "Fairview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.637223, 39.857823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093778", "POINTID": "1102654009233", "FULLNAME": "Campbell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.634721, 39.861389 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093781", "POINTID": "1102654012275", "FULLNAME": "Fullen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.628887, 39.914999 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102213206456", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.637827, 39.924180 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066058694", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.632047, 39.925109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066059341", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.638009, 39.928619 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436931", "POINTID": "1102653985238", "FULLNAME": "Jamestown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.628911, 39.926769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433062", "POINTID": "1102654010813", "FULLNAME": "Cox Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.638334, 40.088371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438348", "POINTID": "1102654015221", "FULLNAME": "Loveless Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.634724, 40.193369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441338", "POINTID": "1102654017958", "FULLNAME": "Pleasant View Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.636944, 40.388088 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440788", "POINTID": "1102653994303", "FULLNAME": "Owasco", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.628056, 40.460866 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440498", "POINTID": "1102653993797", "FULLNAME": "Ockley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.633887, 40.488368 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12344 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441727", "POINTID": "1102653995962", "FULLNAME": "Radnor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.635000, 40.509478 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12339 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435740", "POINTID": "1102653982471", "FULLNAME": "Harley Siding", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.634721, 40.551423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438953", "POINTID": "1102654015880", "FULLNAME": "Mears Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.630558, 40.598924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12328 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431366", "POINTID": "1102654008108", "FULLNAME": "Bostetter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.633613, 40.646148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434701", "POINTID": "1102654012119", "FULLNAME": "Foster Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.637521, 41.737822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12656 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437572", "POINTID": "1102654014756", "FULLNAME": "Lamb Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.623037, 37.854223 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12653 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450864", "POINTID": "1102653951791", "FULLNAME": "Drinkwater Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.627203, 37.880333 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451352", "POINTID": "1102653954016", "FULLNAME": "Polk Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.619427, 37.877278 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450796", "POINTID": "1102654010553", "FULLNAME": "Cooks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.619703, 37.991168 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12612 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451586", "POINTID": "1102654021149", "FULLNAME": "Underhill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.626098, 38.230612 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451363", "POINTID": "1102654018060", "FULLNAME": "Potter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.624708, 38.307557 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452173", "POINTID": "1102653993090", "FULLNAME": "Newton Stewart", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.624987, 38.375056 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12575 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450938", "POINTID": "1102653980011", "FULLNAME": "French Lick", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.619990, 38.548944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450907", "POINTID": "1102654011880", "FULLNAME": "Faucett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.622214, 38.624220 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450722", "POINTID": "1102654008640", "FULLNAME": "Brunner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.626661, 38.687275 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451835", "POINTID": "1102654012931", "FULLNAME": "Grodey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.619717, 38.717273 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451843", "POINTID": "1102654010786", "FULLNAME": "Cox Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.618885, 38.803662 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12533 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103724250641", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.622222, 38.914563 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12531 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450774", "POINTID": "1102654009852", "FULLNAME": "Christian Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.617775, 38.928382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451499", "POINTID": "1102653999296", "FULLNAME": "Springville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.619443, 38.936160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292623", "FULLNAME": "Monroe County Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.616680, 39.146021 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108477710605", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.620360, 39.214331 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015503525561", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.616806, 39.212767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045873551", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.626626, 39.221405 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102384806513", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.619532, 39.223061 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434095", "POINTID": "1102653977478", "FULLNAME": "Ellettsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.625001, 39.233934 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060816043", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.617405, 39.240698 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114990482", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.616198, 39.234881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060816044", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.616603, 39.242846 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060816043", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.617405, 39.240698 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060855911", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.619768, 39.295108 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443468", "POINTID": "1102654019748", "FULLNAME": "Shumaker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.616112, 39.520878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443468", "POINTID": "1102654019748", "FULLNAME": "Shumaker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.616112, 39.520878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445915", "POINTID": "1102654021836", "FULLNAME": "Whitaker-Patrick Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.627224, 39.536434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292617", "FULLNAME": "Patrum Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.616782, 39.573088 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093825", "POINTID": "1102654021490", "FULLNAME": "Walnut Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.619446, 39.613055 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440600", "POINTID": "1102654017348", "FULLNAME": "Old Spring Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.620280, 39.698379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094093", "POINTID": "1102654021116", "FULLNAME": "Turner Farm Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.626666, 39.763334 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094086", "POINTID": "1102654017709", "FULLNAME": "Peck Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.623053, 39.775000 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094087", "POINTID": "1102654018633", "FULLNAME": "Robbins Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.627221, 39.813889 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066056110", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.626269, 39.923269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436680", "POINTID": "1102654014060", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.620559, 39.930887 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430023", "POINTID": "1102653964179", "FULLNAME": "Advance", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.620001, 39.995873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433658", "POINTID": "1102653976128", "FULLNAME": "Dover", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.620001, 40.054484 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066060394", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.622157, 40.125019 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066060339", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.619918, 40.126569 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438567", "POINTID": "1102654015422", "FULLNAME": "Maple Law Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.616112, 40.124215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12365 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430812", "POINTID": "1102654007407", "FULLNAME": "Bennett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.616388, 40.330035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435637", "POINTID": "1102653982166", "FULLNAME": "Hamilton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.618054, 40.344755 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443307", "POINTID": "1102654019541", "FULLNAME": "Sharp Point Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.622222, 40.602814 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137840291", "FULLNAME": "Eastlawn Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.618553, 40.747688 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442801", "POINTID": "1102654019172", "FULLNAME": "Saint Peters Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.621117, 41.054761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441125", "POINTID": "1102653953861", "FULLNAME": "Pigeon Roost Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.616120, 41.174483 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12251 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440445", "POINTID": "1102654017091", "FULLNAME": "Oak Park Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.625845, 41.280040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273249470", "FULLNAME": "Hospital", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.621819, 41.287556 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12249 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437415", "POINTID": "1102653986471", "FULLNAME": "Knox", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.625011, 41.295873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12243 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292413", "FULLNAME": "Singleton's Landing Strp", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.625127, 41.350860 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450479", "POINTID": "1102653997490", "FULLNAME": "Salem Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.621962, 41.574763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431927", "POINTID": "1102653970983", "FULLNAME": "Byron", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.624740, 41.656153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110115882252", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.614234, 37.938761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12617 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451392", "POINTID": "1102654018513", "FULLNAME": "Rickenbaugh Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.612485, 38.190057 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12616 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451856", "POINTID": "1102653959791", "FULLNAME": "Lake Celina Recreation Site", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.606096, 38.196725 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12611 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451595", "POINTID": "1102654021285", "FULLNAME": "Valley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.605817, 38.243114 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450882", "POINTID": "1102653977074", "FULLNAME": "Eckerty", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.611930, 38.320336 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450883", "POINTID": "1102654011534", "FULLNAME": "Eckerty Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.611375, 38.325891 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451631", "POINTID": "1102654022023", "FULLNAME": "Williams Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.608875, 38.354500 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110135817164", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.611184, 38.372816 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451566", "POINTID": "1102653954993", "FULLNAME": "Tillery Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.606378, 38.426446 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12574 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451617", "POINTID": "1102654002218", "FULLNAME": "West Baden Springs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.611101, 38.565331 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451617", "POINTID": "1102654002218", "FULLNAME": "West Baden Springs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.611101, 38.565331 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451184", "POINTID": "1102653953276", "FULLNAME": "Luke Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.614993, 38.656720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451239", "POINTID": "1102653991402", "FULLNAME": "Moorestown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.615827, 38.718662 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114260718", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.614012, 38.971290 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103931353624", "FULLNAME": "Lawrance County Recreational Park", "MTFCC": "K2186" }, "geometry": { "type": "Point", "coordinates": [ -86.612147, 38.988339 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437361", "POINTID": "1102653986211", "FULLNAME": "Kirksville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.613054, 39.045880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046989431", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.615881, 39.124301 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437350", "POINTID": "1102653986160", "FULLNAME": "Kirby", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.609999, 39.136714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114941966", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.607507, 39.164278 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114996935", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.608392, 39.163613 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045875241", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.606255, 39.159435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114941966", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.607507, 39.164278 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114944017", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.607883, 39.181308 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114944017", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.607883, 39.181308 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046989183", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.615310, 39.231173 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108603546402", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.610946, 39.238347 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060855912", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.614178, 39.293188 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437960", "POINTID": "1102654014994", "FULLNAME": "Lingle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.607778, 39.444212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443468", "POINTID": "1102654019748", "FULLNAME": "Shumaker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.616112, 39.520878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443468", "POINTID": "1102654019748", "FULLNAME": "Shumaker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.616112, 39.520878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430143", "POINTID": "1102653964999", "FULLNAME": "Amo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.613612, 39.688101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093775", "POINTID": "1102654020174", "FULLNAME": "Springtown Methodist Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.606944, 39.701388 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093773", "POINTID": "1102654013038", "FULLNAME": "Hadley Friends Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.608333, 39.729444 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292314", "FULLNAME": "Layne Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.616224, 39.782254 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093779", "POINTID": "1102654011294", "FULLNAME": "Devenport Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.612220, 39.837778 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093790", "POINTID": "1102654021051", "FULLNAME": "Trotter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.606386, 39.857221 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093782", "POINTID": "1102654012671", "FULLNAME": "Gossett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.613054, 39.914443 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438569", "POINTID": "1102654015427", "FULLNAME": "Maple Lawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.616391, 40.125316 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438567", "POINTID": "1102654015422", "FULLNAME": "Maple Law Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.616112, 40.124215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066055579", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.605981, 40.131089 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12367 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441619", "POINTID": "1102654018173", "FULLNAME": "Providence Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.614167, 40.319477 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12365 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430812", "POINTID": "1102654007407", "FULLNAME": "Bennett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.616388, 40.330035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436590", "POINTID": "1102654013904", "FULLNAME": "Hufford Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.606386, 40.433923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12319 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443187", "POINTID": "1102654019455", "FULLNAME": "Seceder Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.605281, 40.721148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438987", "POINTID": "1102654015909", "FULLNAME": "Memorial Gdns", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.611673, 41.050038 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292387", "FULLNAME": "Arens Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.612869, 41.092261 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441125", "POINTID": "1102653953861", "FULLNAME": "Pigeon Roost Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.616120, 41.174483 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292488", "FULLNAME": "Wheeler Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.606952, 41.189760 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080759557", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.608258, 41.286470 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12249 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433208", "POINTID": "1102654011011", "FULLNAME": "Crown Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.606866, 41.296322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442265", "POINTID": "1102653996959", "FULLNAME": "Rolling Pr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.615852, 41.670876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444622", "POINTID": "1102654020808", "FULLNAME": "Teeter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.606131, 41.703932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12653 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451664", "POINTID": "1102653987313", "FULLNAME": "Lauer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.601647, 37.879223 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450954", "POINTID": "1102654012482", "FULLNAME": "German Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.595258, 37.967002 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451123", "POINTID": "1102653953091", "FULLNAME": "Knoblick Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.597481, 37.977557 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452517", "POINTID": "1102653953121", "FULLNAME": "Krausch Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.594702, 37.985891 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451439", "POINTID": "1102654019380", "FULLNAME": "Schraner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.600536, 37.997837 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12623 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450651", "POINTID": "1102653966500", "FULLNAME": "Bandon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.600260, 38.137280 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12610 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450861", "POINTID": "1102653976060", "FULLNAME": "Doolittle Mills", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.603041, 38.250891 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450959", "POINTID": "1102654012512", "FULLNAME": "Gilmore Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.604986, 38.299502 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451850", "POINTID": "1102654016370", "FULLNAME": "Mount Eden Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.594152, 38.366167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452529", "POINTID": "1102654017689", "FULLNAME": "Patoka Memorial Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.602765, 38.438668 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051959006", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.602368, 38.571226 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010379156343", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.597419, 38.566707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12568 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451221", "POINTID": "1102654016077", "FULLNAME": "Miller Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.600547, 38.613385 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451837", "POINTID": "1102653962545", "FULLNAME": "Shirley Creek Horsemans Camp", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.597492, 38.649497 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451043", "POINTID": "1102653983792", "FULLNAME": "Hindostan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.604436, 38.665608 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450908", "POINTID": "1102653978642", "FULLNAME": "Fayetteville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.595274, 38.860883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451196", "POINTID": "1102653953317", "FULLNAME": "Mall Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.600828, 38.887551 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12531 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451656", "POINTID": "1102653996167", "FULLNAME": "Red Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.597773, 38.933383 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451384", "POINTID": "1102653954170", "FULLNAME": "Red Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.596132, 38.928864 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114984825", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.602840, 39.112964 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114984825", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.602840, 39.112964 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103471811523", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.603318, 39.155766 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045875251", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.604677, 39.155587 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045874175", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.602001, 39.160082 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060869383", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.599525, 39.155866 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445727", "POINTID": "1102654002226", "FULLNAME": "West Brook Downs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.601110, 39.214489 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046988902", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.601437, 39.209705 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072974075", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.594557, 39.211553 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046988889", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.601292, 39.216011 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060822684", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.604618, 39.230371 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472344272", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.597025, 39.230115 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434098", "POINTID": "1102654011613", "FULLNAME": "Elliott Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.597779, 39.297823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437321", "POINTID": "1102654014529", "FULLNAME": "King Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.604168, 39.332822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12477 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292669", "FULLNAME": "Bluebird Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.598723, 39.391097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444162", "POINTID": "1102654020369", "FULLNAME": "Stierwalt Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.601947, 39.426433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441226", "POINTID": "1102653995124", "FULLNAME": "Plano", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.603889, 39.499212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433206", "POINTID": "1102654010970", "FULLNAME": "Crown Center Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.594445, 39.576435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292412", "FULLNAME": "Marcidale Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.600944, 39.684986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435585", "POINTID": "1102653982068", "FULLNAME": "Hadley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.602778, 39.731434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094090", "POINTID": "1102654019527", "FULLNAME": "Shannon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.604165, 39.804166 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094091", "POINTID": "1102654020937", "FULLNAME": "Tinder Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.604165, 39.814443 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435090", "POINTID": "1102654012519", "FULLNAME": "Gipson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.594737, 40.156715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081530029", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.601700, 40.420135 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081530030", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.599034, 40.420166 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442329", "POINTID": "1102653997096", "FULLNAME": "Rossville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.594729, 40.416978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110263005501", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.601990, 40.422969 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436589", "POINTID": "1102654013911", "FULLNAME": "Hufford Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.600276, 40.460866 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436595", "POINTID": "1102654013915", "FULLNAME": "Hughes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.598331, 40.460589 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12329 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445911", "POINTID": "1102654021831", "FULLNAME": "Whistler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.601668, 40.634481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12319 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443187", "POINTID": "1102654019455", "FULLNAME": "Seceder Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.605281, 40.721148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446163", "POINTID": "1102654003063", "FULLNAME": "Winamac", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.603063, 41.051428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102207795120", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.597213, 41.060011 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137056282", "FULLNAME": "Hospital", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.595097, 41.056286 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430653", "POINTID": "1102653967101", "FULLNAME": "Beardstown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.602508, 41.138094 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430566", "POINTID": "1102653966909", "FULLNAME": "Bass Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.602231, 41.185318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430563", "POINTID": "1102653966899", "FULLNAME": "Bass Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.601955, 41.207262 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081847063", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.599731, 41.293850 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440401", "POINTID": "1102654017062", "FULLNAME": "Oak Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.601679, 41.324762 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444166", "POINTID": "1102653999522", "FULLNAME": "Stillwell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.602792, 41.555872 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431100", "POINTID": "1102653968111", "FULLNAME": "Birchim", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.602797, 41.710322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451424", "POINTID": "1102654019148", "FULLNAME": "Saint Peters Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.587758, 37.942835 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12645 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452519", "POINTID": "1102653958179", "FULLNAME": "German Ridge Recreation Area", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.588868, 37.951725 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451350", "POINTID": "1102653954001", "FULLNAME": "Plock Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.591647, 37.962834 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451139", "POINTID": "1102653987668", "FULLNAME": "Leopold", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.583316, 38.103949 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12621 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450989", "POINTID": "1102654013000", "FULLNAME": "Guillaume Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.593871, 38.153113 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12613 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451415", "POINTID": "1102653997298", "FULLNAME": "Saint Croix", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.586371, 38.223948 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449460", "POINTID": "1102653956763", "FULLNAME": "Clarksville Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.583319, 38.316167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451850", "POINTID": "1102654016370", "FULLNAME": "Mount Eden Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.594152, 38.366167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12558 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450964", "POINTID": "1102653952192", "FULLNAME": "Gobblers Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.588040, 38.700325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451299", "POINTID": "1102654017377", "FULLNAME": "Old Union Church Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.589440, 38.846716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452522", "POINTID": "1102654017775", "FULLNAME": "Perry Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.588329, 38.993937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114991900", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.588973, 39.129925 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114993165", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.587431, 39.129890 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060869583", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.591092, 39.131003 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114991900", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.588973, 39.129925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045873824", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.590438, 39.152796 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103916293889", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.587511, 39.153176 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045874032", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.590953, 39.161912 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436173", "POINTID": "1102653983584", "FULLNAME": "Highland Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.583609, 39.160880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718655217", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.590733, 39.205397 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718658068", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.584735, 39.204994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718667481", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.591953, 39.212513 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114995166", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.587635, 39.215129 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051948377", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.592835, 39.222797 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046988609", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.588187, 39.222126 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114983616", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.588836, 39.215146 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114995166", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.587635, 39.215129 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046988606", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.591889, 39.225191 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114998090", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.586074, 39.229448 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435242", "POINTID": "1102654012665", "FULLNAME": "Goss Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.588611, 39.395324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433206", "POINTID": "1102654010970", "FULLNAME": "Crown Center Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.594445, 39.576435 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433205", "POINTID": "1102653974642", "FULLNAME": "Crown Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.589721, 39.579490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093823", "POINTID": "1102654019980", "FULLNAME": "Snoddy Family Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.588887, 39.631389 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046724523", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.587128, 39.766210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046724523", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.587128, 39.766210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094089", "POINTID": "1102654019450", "FULLNAME": "Sears Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.586666, 39.787222 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12377 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438536", "POINTID": "1102654015405", "FULLNAME": "Manson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.590000, 40.235312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12376 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438535", "POINTID": "1102653989217", "FULLNAME": "Manson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.590277, 40.240034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436957", "POINTID": "1102653985361", "FULLNAME": "Jefferson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.590000, 40.279479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436957", "POINTID": "1102653985361", "FULLNAME": "Jefferson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.590000, 40.279479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436958", "POINTID": "1102654014218", "FULLNAME": "Jefferson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.589721, 40.290313 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12342 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446441", "POINTID": "1102654022402", "FULLNAME": "Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.593332, 40.525588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12329 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577084741", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.583598, 40.636989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12326 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440892", "POINTID": "1102654017638", "FULLNAME": "Parks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.588890, 40.656426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431852", "POINTID": "1102653970726", "FULLNAME": "Burnettsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.593613, 40.761149 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504166862", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.588775, 41.205410 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292630", "FULLNAME": "Cummings Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.584574, 41.633084 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442516", "POINTID": "1102654018878", "FULLNAME": "Saint Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.592519, 41.703656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292662", "FULLNAME": "Layden Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.583630, 41.741709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12648 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450704", "POINTID": "1102654008258", "FULLNAME": "Brashear Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.580535, 37.926167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12644 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450984", "POINTID": "1102653952283", "FULLNAME": "Greybill Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.583035, 37.957558 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450909", "POINTID": "1102653952018", "FULLNAME": "Featherbed Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.572759, 37.986225 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450951", "POINTID": "1102653980603", "FULLNAME": "Gerald", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.573035, 38.007559 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451011", "POINTID": "1102654013139", "FULLNAME": "Harding Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.572201, 38.015059 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451139", "POINTID": "1102653987668", "FULLNAME": "Leopold", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.583316, 38.103949 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12623 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450652", "POINTID": "1102654006970", "FULLNAME": "Bangle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.576372, 38.142837 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450702", "POINTID": "1102653969200", "FULLNAME": "Branchville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.579703, 38.163669 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12614 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110115952851", "FULLNAME": "Holy Cross Church Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.573076, 38.213907 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449460", "POINTID": "1102653956763", "FULLNAME": "Clarksville Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.583319, 38.316167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718300592", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.579711, 38.508216 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12557 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450734", "POINTID": "1102654008980", "FULLNAME": "Burton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.578327, 38.709495 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451836", "POINTID": "1102654012437", "FULLNAME": "Georgia Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.572494, 38.704497 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450950", "POINTID": "1102653980588", "FULLNAME": "Georgia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.572215, 38.710052 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451426", "POINTID": "1102653954397", "FULLNAME": "Sally Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.576104, 38.744773 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450725", "POINTID": "1102653970230", "FULLNAME": "Bryantsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.573049, 38.768663 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103724181809", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.582002, 38.970854 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103724181595", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.574288, 38.972870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445274", "POINTID": "1102654001539", "FULLNAME": "Victor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.580833, 39.060881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051939445", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.573636, 39.113838 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114990652", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.581905, 39.129114 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434942", "POINTID": "1102653980257", "FULLNAME": "Garden Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.578048, 39.124492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445205", "POINTID": "1102654001353", "FULLNAME": "Van Buren Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.580833, 39.135882 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114996050", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.579803, 39.132386 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437784", "POINTID": "1102653987647", "FULLNAME": "Leonard Springs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.577220, 39.140602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436628", "POINTID": "1102653984558", "FULLNAME": "Hunter Switch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.573609, 39.173657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046988599", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.582184, 39.215102 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046989147", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.580041, 39.208296 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489258371", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.582597, 39.216383 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103626257172", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.572684, 39.216655 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046988599", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.582184, 39.215102 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489244816", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.572134, 39.220416 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114946839", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.583349, 39.229484 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445361", "POINTID": "1102654001691", "FULLNAME": "Wakeland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.575278, 39.469212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292748", "FULLNAME": "Winters Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.575946, 39.533643 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093771", "POINTID": "1102654007525", "FULLNAME": "Bethel Lutheran Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.580001, 39.664722 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449707", "POINTID": "1102653994607", "FULLNAME": "Pecksburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.574167, 39.688101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046724441", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.581838, 39.754461 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292279", "FULLNAME": "Meadors Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.576504, 39.793644 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094084", "POINTID": "1102654016925", "FULLNAME": "Noland Number 1 Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.577222, 39.805276 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292364", "FULLNAME": "Bergs Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.580111, 39.885586 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435520", "POINTID": "1102654012943", "FULLNAME": "Groover Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.576943, 39.907543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292013", "FULLNAME": "Hood Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.575943, 39.997484 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438745", "POINTID": "1102653989762", "FULLNAME": "Max", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.581943, 40.010319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431682", "POINTID": "1102654008681", "FULLNAME": "Brush Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.572499, 40.169757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437641", "POINTID": "1102654014827", "FULLNAME": "Latshaw Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.576109, 40.388366 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12358 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437641", "POINTID": "1102654014827", "FULLNAME": "Latshaw Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.576109, 40.388366 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441601", "POINTID": "1102653995690", "FULLNAME": "Prince William", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.573052, 40.442256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446207", "POINTID": "1102654022088", "FULLNAME": "Wise Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.580554, 40.604757 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439961", "POINTID": "1102654016663", "FULLNAME": "Nebo Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.577499, 40.604203 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12328 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442217", "POINTID": "1102653996803", "FULLNAME": "Rockfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.573888, 40.641147 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439870", "POINTID": "1102654016615", "FULLNAME": "Mullendore Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.581946, 40.668369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12321 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438202", "POINTID": "1102653988380", "FULLNAME": "Lockport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.573561, 40.699125 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433348", "POINTID": "1102654011156", "FULLNAME": "Davis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.574170, 40.765315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446446", "POINTID": "1102654022404", "FULLNAME": "Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.580004, 40.824482 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12289 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436693", "POINTID": "1102654014090", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.572783, 40.969761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441851", "POINTID": "1102654018357", "FULLNAME": "Reed Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.575283, 41.055317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436349", "POINTID": "1102654013755", "FULLNAME": "Holy Cross Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.581956, 41.335040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273249518", "FULLNAME": "Town Hall", "MTFCC": "K2165" }, "geometry": { "type": "Point", "coordinates": [ -86.582697, 41.380005 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435652", "POINTID": "1102653982185", "FULLNAME": "Hamlet", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.582238, 41.547542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12648 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451663", "POINTID": "1102653982400", "FULLNAME": "Hardingrove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.571370, 37.927003 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12647 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451663", "POINTID": "1102653982400", "FULLNAME": "Hardingrove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.571370, 37.927003 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451395", "POINTID": "1102653954237", "FULLNAME": "Riggs Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.566367, 37.937837 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450962", "POINTID": "1102653952151", "FULLNAME": "Glenn Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.569978, 38.001449 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450958", "POINTID": "1102654012511", "FULLNAME": "Gilliand Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.561368, 38.011726 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451011", "POINTID": "1102654013139", "FULLNAME": "Harding Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.572201, 38.015059 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450642", "POINTID": "1102654006847", "FULLNAME": "Badger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.569425, 38.036448 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451331", "POINTID": "1102654017818", "FULLNAME": "Phelps Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.568036, 38.045892 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12633 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451536", "POINTID": "1102654020733", "FULLNAME": "Talley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.561092, 38.054225 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12624 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450929", "POINTID": "1102654012149", "FULLNAME": "Frakes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.571370, 38.131170 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451605", "POINTID": "1102654021446", "FULLNAME": "Walker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.562760, 38.165892 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451541", "POINTID": "1102654000337", "FULLNAME": "Taswell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.561137, 38.334194 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110115613683", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.565370, 38.485643 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450618", "POINTID": "1102653963949", "FULLNAME": "Abydel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.561102, 38.570610 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12557 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450950", "POINTID": "1102653980588", "FULLNAME": "Georgia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.572215, 38.710052 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451568", "POINTID": "1102654020925", "FULLNAME": "Tincher Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.571659, 38.739218 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450811", "POINTID": "1102653974174", "FULLNAME": "Coxton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.561223, 38.829535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450896", "POINTID": "1102653978056", "FULLNAME": "Eureka", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.562773, 38.870884 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015922722043", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.565469, 39.115124 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114943893", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.563959, 39.158274 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060930385", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.566869, 39.177605 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489244816", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.572134, 39.220416 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440862", "POINTID": "1102653994413", "FULLNAME": "Paragon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.562500, 39.395046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441789", "POINTID": "1102654018291", "FULLNAME": "Ratts Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.563889, 39.465601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443469", "POINTID": "1102653954666", "FULLNAME": "Shumaker Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.568889, 39.492546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439777", "POINTID": "1102653991888", "FULLNAME": "Mt Zion Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.564168, 39.521158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439777", "POINTID": "1102653991888", "FULLNAME": "Mt Zion Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.564168, 39.521158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093665", "POINTID": "1102654016071", "FULLNAME": "Mill Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.564721, 39.734165 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093672", "POINTID": "1102654016841", "FULLNAME": "Nichols Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.567776, 39.753333 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093649", "POINTID": "1102654013144", "FULLNAME": "Hardwick Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.563886, 39.775555 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093648", "POINTID": "1102654012414", "FULLNAME": "Gentry Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.563331, 39.786665 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093766", "POINTID": "1102654016930", "FULLNAME": "Noland Number 2 Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.568886, 39.799167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439352", "POINTID": "1102653991204", "FULLNAME": "Montclair", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.566944, 39.848100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094103", "POINTID": "1102654018158", "FULLNAME": "Pritchett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.566386, 39.863610 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445060", "POINTID": "1102654021190", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.561110, 39.958375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292026", "FULLNAME": "Reimer Aerodrome", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.566223, 39.963640 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435938", "POINTID": "1102653982977", "FULLNAME": "Hazelrigg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.563055, 40.082219 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438734", "POINTID": "1102653989713", "FULLNAME": "Mattix Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.566960, 40.344199 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436234", "POINTID": "1102654013624", "FULLNAME": "Hiner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.569720, 40.388366 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12358 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436234", "POINTID": "1102654013624", "FULLNAME": "Hiner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.569720, 40.388366 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12328 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105533773105", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.566405, 40.646076 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12327 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436689", "POINTID": "1102654014078", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.568610, 40.648095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444705", "POINTID": "1102654020889", "FULLNAME": "Thompson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.562502, 40.868093 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445229", "POINTID": "1102654001401", "FULLNAME": "Vanmeter Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.568063, 41.085873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431811", "POINTID": "1102653951283", "FULLNAME": "Bunker Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.569144, 41.102259 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136978013", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.561167, 41.101194 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446187", "POINTID": "1102654003101", "FULLNAME": "Winona", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.569452, 41.236150 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452284", "POINTID": "1102653955930", "FULLNAME": "Bass Lake State Fish Hatchery", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.566952, 41.238928 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444474", "POINTID": "1102654020661", "FULLNAME": "Swartzell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.571678, 41.309206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434588", "POINTID": "1102654012056", "FULLNAME": "Fletcher Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.563624, 41.362819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436116", "POINTID": "1102653983400", "FULLNAME": "Hicks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.569186, 41.706433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452521", "POINTID": "1102654008715", "FULLNAME": "Bryant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.559147, 37.985058 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451478", "POINTID": "1102653954737", "FULLNAME": "Solomon Bryant Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.550534, 37.985614 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450958", "POINTID": "1102654012511", "FULLNAME": "Gilliand Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.561368, 38.011726 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12633 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451536", "POINTID": "1102654020733", "FULLNAME": "Talley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.561092, 38.054225 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12624 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451386", "POINTID": "1102654018420", "FULLNAME": "Rennie Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.554981, 38.128670 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450897", "POINTID": "1102654011763", "FULLNAME": "Ewing Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.552205, 38.170059 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12618 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450787", "POINTID": "1102654010236", "FULLNAME": "Colby Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.560260, 38.183948 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451541", "POINTID": "1102654000337", "FULLNAME": "Taswell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.561137, 38.334194 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12585 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450982", "POINTID": "1102653981584", "FULLNAME": "Greenbrier", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.555821, 38.463112 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12578 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451525", "POINTID": "1102654020571", "FULLNAME": "Sulphur Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.558600, 38.526998 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450618", "POINTID": "1102653963949", "FULLNAME": "Abydel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.561102, 38.570610 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12566 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451304", "POINTID": "1102653994063", "FULLNAME": "Orangeville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.556658, 38.631443 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451078", "POINTID": "1102654014048", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.553603, 38.650608 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450811", "POINTID": "1102653974174", "FULLNAME": "Coxton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.561223, 38.829535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109073262261", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.550599, 38.946739 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450711", "POINTID": "1102654008437", "FULLNAME": "Brinegar Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.556897, 38.956061 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942351752", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.554898, 38.961394 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450630", "POINTID": "1102654006622", "FULLNAME": "Anderson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.552498, 38.971438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060856632", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.557999, 39.064519 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060856419", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.556918, 39.077721 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060815302", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.559984, 39.098600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060871726", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.551653, 39.119962 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485876364", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.553509, 39.129120 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485876329", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.550223, 39.126146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046994102", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.552066, 39.137723 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485876330", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.550258, 39.130345 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046994100", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.554099, 39.139445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445189", "POINTID": "1102654021284", "FULLNAME": "Valhalla Memory Gdns", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.558053, 39.169768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473862288", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.550685, 39.205073 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437595", "POINTID": "1102653987150", "FULLNAME": "Lancaster Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.560831, 39.210323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443752", "POINTID": "1102654019996", "FULLNAME": "Sodom Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.559166, 39.347267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435140", "POINTID": "1102653952160", "FULLNAME": "Goat Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.554166, 39.417269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699612427", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.551111, 39.756492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015682291808", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.558291, 39.769374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718843866", "FULLNAME": "Michelle Manor", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.551200, 39.785449 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094100", "POINTID": "1102654014881", "FULLNAME": "Leach Number 1 Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.554163, 39.859999 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445060", "POINTID": "1102654021190", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.561110, 39.958375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292071", "FULLNAME": "Frankfort Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.560890, 40.272861 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12361 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431998", "POINTID": "1102653971136", "FULLNAME": "Cambria", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.559166, 40.365867 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439579", "POINTID": "1102654016403", "FULLNAME": "Mount Hope Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.552219, 40.386979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12336 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440002", "POINTID": "1102654016727", "FULLNAME": "Nettle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.559721, 40.578091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431605", "POINTID": "1102654008581", "FULLNAME": "Brown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.558889, 40.670314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12288 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444071", "POINTID": "1102653999380", "FULLNAME": "Star City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.556113, 40.971984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136978013", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.561167, 41.101194 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136965199", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.556631, 41.096555 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440673", "POINTID": "1102653994052", "FULLNAME": "Ora", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.553064, 41.173928 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440675", "POINTID": "1102654017472", "FULLNAME": "Ora Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.553064, 41.180317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12253 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292466", "FULLNAME": "Bickel's Company Patch Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.558176, 41.267527 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434513", "POINTID": "1102653978884", "FULLNAME": "Fish Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.551959, 41.566710 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12647 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451131", "POINTID": "1102654014757", "FULLNAME": "Lamb Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.539701, 37.930058 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451613", "POINTID": "1102654021619", "FULLNAME": "Wegenast Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.539146, 37.929504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450988", "POINTID": "1102653952303", "FULLNAME": "Groves Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.542201, 37.967558 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450794", "POINTID": "1102654010498", "FULLNAME": "Conner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.546090, 38.003949 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451215", "POINTID": "1102653990613", "FULLNAME": "Mifflin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.540262, 38.306168 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110115615395", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.548418, 38.687137 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451091", "POINTID": "1102654014169", "FULLNAME": "Isom Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.544435, 38.715052 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12555 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451000", "POINTID": "1102654013059", "FULLNAME": "Hall Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.540270, 38.723385 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451840", "POINTID": "1102654010492", "FULLNAME": "Connelly Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.547469, 38.766166 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451841", "POINTID": "1102654014631", "FULLNAME": "Knott Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.539438, 38.788941 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12544 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774389", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.540160, 38.815634 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451838", "POINTID": "1102653996682", "FULLNAME": "Riverview", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.541662, 38.842273 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450829", "POINTID": "1102653975081", "FULLNAME": "Dark Holw", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.539438, 38.888939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12533 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450637", "POINTID": "1102653966137", "FULLNAME": "Avoca", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.547772, 38.911994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108669437186", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.545189, 38.925338 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072948779", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.540272, 38.917556 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12531 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108669437186", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.545189, 38.925338 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109073262254", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.549268, 38.947282 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109073262847", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.546009, 38.946018 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103924563712", "FULLNAME": "Connors Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.546661, 38.964546 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451256", "POINTID": "1102654016550", "FULLNAME": "Mount Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.543606, 38.962550 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109073028351", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.544837, 38.979107 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432684", "POINTID": "1102654010117", "FULLNAME": "Clover Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.547219, 39.015881 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435809", "POINTID": "1102653982597", "FULLNAME": "Harrodsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.544996, 39.013382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439694", "POINTID": "1102654016508", "FULLNAME": "Mount Salem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.540275, 39.078660 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046992327", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.539264, 39.102772 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449639", "POINTID": "1102653973026", "FULLNAME": "Clear Creek", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.539996, 39.109215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060871698", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.548279, 39.121194 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060871700", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.542976, 39.120202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485876329", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.550223, 39.126146 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046992494", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.543561, 39.129761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485876330", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.550258, 39.130345 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046992492", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.540047, 39.130424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046994099", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.550432, 39.138936 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046994105", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.544837, 39.144082 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051931504", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.542689, 39.147034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045880537", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.550065, 39.157802 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292606", "FULLNAME": "Indiana University Health Bloomington Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.541519, 39.160660 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442292", "POINTID": "1102654018681", "FULLNAME": "Rose Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.548053, 39.166435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045873593", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.545106, 39.176011 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045873594", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.543520, 39.175035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430244", "POINTID": "1102653965539", "FULLNAME": "Arlington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.549998, 39.183934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473862322", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.546720, 39.194185 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473862274", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.549630, 39.206758 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473862279", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.549625, 39.205821 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473862320", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.546806, 39.200165 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473862274", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.549630, 39.206758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439306", "POINTID": "1102653990986", "FULLNAME": "Modesto", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.548332, 39.269767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434869", "POINTID": "1102654012254", "FULLNAME": "Friendship Park Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.548887, 39.402823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452227", "POINTID": "1102653983246", "FULLNAME": "Herbamount", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.545897, 39.507749 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093850", "POINTID": "1102654015682", "FULLNAME": "McCormack Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.547222, 39.690276 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093850", "POINTID": "1102654015682", "FULLNAME": "McCormack Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.547222, 39.690276 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699612508", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.549746, 39.756585 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264235548", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.543113, 39.757721 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264127827", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.543413, 39.758674 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264235548", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.543113, 39.757721 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093549", "POINTID": "1102654006750", "FULLNAME": "Arnold-Stuart Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.541943, 39.819999 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094101", "POINTID": "1102654014893", "FULLNAME": "Leach Number 2 Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.548332, 39.874443 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439362", "POINTID": "1102654016175", "FULLNAME": "Montgomery Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.545285, 39.878605 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094102", "POINTID": "1102654015151", "FULLNAME": "Lizton Knights of Pythias Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.542024, 39.880708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438191", "POINTID": "1102653988333", "FULLNAME": "Lizton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.543333, 39.886710 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441444", "POINTID": "1102654018033", "FULLNAME": "Poplar Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.543054, 39.930320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430953", "POINTID": "1102654007517", "FULLNAME": "Bethel Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.544167, 40.134481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12369 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431816", "POINTID": "1102654008821", "FULLNAME": "Bunnell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.541291, 40.301714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12340 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292023", "FULLNAME": "Flora Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.547053, 40.539188 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12332 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432002", "POINTID": "1102653971182", "FULLNAME": "Camden", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.539999, 40.608646 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12293 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431710", "POINTID": "1102654008747", "FULLNAME": "Buck Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.544725, 40.932261 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437160", "POINTID": "1102653985750", "FULLNAME": "Kankakee", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.539197, 41.508107 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437535", "POINTID": "1102653986856", "FULLNAME": "Lake Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.549740, 41.704765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12648 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451457", "POINTID": "1102654019723", "FULLNAME": "Shoemaker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.530257, 37.923114 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12647 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451613", "POINTID": "1102654021619", "FULLNAME": "Wegenast Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.539146, 37.929504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451575", "POINTID": "1102653955012", "FULLNAME": "Tom Bryant Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.535257, 37.937280 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450987", "POINTID": "1102654012969", "FULLNAME": "Groves Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.535533, 37.963670 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451180", "POINTID": "1102654015249", "FULLNAME": "Lower Cummings Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.539057, 38.011154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12637 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451592", "POINTID": "1102654021268", "FULLNAME": "Upper Cummings Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.536922, 38.016449 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12625 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451064", "POINTID": "1102654013830", "FULLNAME": "Horton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.534146, 38.125060 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12611 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451114", "POINTID": "1102654014495", "FULLNAME": "Keysacker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.538872, 38.244226 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12607 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451845", "POINTID": "1102653958790", "FULLNAME": "Hemlock Cliffs Recreation Area", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.538596, 38.277559 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110135818247", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.535144, 38.299414 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450715", "POINTID": "1102654008549", "FULLNAME": "Brown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.528873, 38.353114 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12572 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451498", "POINTID": "1102654020166", "FULLNAME": "Springer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.533323, 38.579222 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12561 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439556", "POINTID": "1102654016369", "FULLNAME": "Mount Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.531936, 38.676720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451841", "POINTID": "1102654014631", "FULLNAME": "Knott Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.539438, 38.788941 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451018", "POINTID": "1102653982673", "FULLNAME": "Hartleyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.534994, 38.796162 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450829", "POINTID": "1102653975081", "FULLNAME": "Dark Holw", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.539438, 38.888939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12535 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114268038", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.529385, 38.892156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12534 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472307582", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.536351, 38.906319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12531 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451269", "POINTID": "1102653992180", "FULLNAME": "Needmore", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.529994, 38.927272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451109", "POINTID": "1102653985658", "FULLNAME": "Judah", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.537217, 38.960883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432388", "POINTID": "1102654009677", "FULLNAME": "Chambers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.532497, 39.023381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051952796", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.538765, 39.038599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046992327", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.539264, 39.102772 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046992324", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.536362, 39.109184 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046624666", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.529407, 39.125037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051937041", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.529189, 39.138551 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431549", "POINTID": "1102653969734", "FULLNAME": "Broadview", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.538330, 39.139770 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051937041", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.529189, 39.138551 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110115156704", "FULLNAME": "Collins Living Learning Ctr", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.535672, 39.167319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060868034", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.539036, 39.189198 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432206", "POINTID": "1102653971710", "FULLNAME": "Cascade", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.538886, 39.190601 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060868714", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.533049, 39.195079 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718552357", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.528878, 39.268147 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432784", "POINTID": "1102654010298", "FULLNAME": "Collier Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.536944, 39.298657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431038", "POINTID": "1102653950942", "FULLNAME": "Big Hurricane Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.530831, 39.461989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439734", "POINTID": "1102654016561", "FULLNAME": "Mount Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.535554, 39.540323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435609", "POINTID": "1102653982127", "FULLNAME": "Hall", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.535830, 39.550046 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439651", "POINTID": "1102654016467", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.529999, 39.549212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444391", "POINTID": "1102653999825", "FULLNAME": "Summit", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.536447, 39.688101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264122813", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.531786, 39.693242 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446676", "POINTID": "1102653992065", "FULLNAME": "Nash", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.538054, 39.749489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264072759", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.535493, 39.757828 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264082934", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.533776, 39.754148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264210375", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.537413, 39.765371 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264072736", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.533722, 39.759309 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264072759", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.535493, 39.757828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699642681", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.532362, 39.771811 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264109516", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.532660, 39.775959 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292394", "FULLNAME": "Jr's Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.536777, 39.818366 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264218464", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.538676, 39.883534 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445283", "POINTID": "1102654021350", "FULLNAME": "Vieley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.539065, 39.880017 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264108496", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.538692, 39.885895 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094099", "POINTID": "1102654011052", "FULLNAME": "Cundiff Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.537499, 39.893610 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094098", "POINTID": "1102654008852", "FULLNAME": "Burgess Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.534165, 39.910000 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12319 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437042", "POINTID": "1102654014269", "FULLNAME": "Johnson City Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.536667, 40.715871 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435381", "POINTID": "1102654012835", "FULLNAME": "Great Eastern Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.532223, 40.728928 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12294 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452943", "POINTID": "1102654000573", "FULLNAME": "Thornhope", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.529447, 40.925872 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440214", "POINTID": "1102654016955", "FULLNAME": "North Bend Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.536673, 41.211984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437160", "POINTID": "1102653985750", "FULLNAME": "Kankakee", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.539197, 41.508107 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110402004402", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.528476, 41.620004 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436576", "POINTID": "1102653984491", "FULLNAME": "Hudson Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.534184, 41.710322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12648 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451405", "POINTID": "1102653996970", "FULLNAME": "Rome", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.523589, 37.923391 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450842", "POINTID": "1102653975686", "FULLNAME": "Derby", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.527199, 38.030338 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450843", "POINTID": "1102654011254", "FULLNAME": "Derby Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.525512, 38.037290 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452516", "POINTID": "1102653960206", "FULLNAME": "Mano Point Recreation Site", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.518868, 38.042838 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12625 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451251", "POINTID": "1102653991752", "FULLNAME": "Mt Pleasant", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.517758, 38.121726 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12622 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451500", "POINTID": "1102654020200", "FULLNAME": "Sprinkle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.522757, 38.145615 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12621 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450955", "POINTID": "1102654012483", "FULLNAME": "German Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.521368, 38.155339 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12612 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451618", "POINTID": "1102654002308", "FULLNAME": "West Fork", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.526370, 38.233672 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450895", "POINTID": "1102653977991", "FULLNAME": "Ethel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.524428, 38.403668 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451659", "POINTID": "1102654001063", "FULLNAME": "Turleys", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.520545, 38.570886 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451839", "POINTID": "1102653955609", "FULLNAME": "4-H Club Fairground", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.528049, 38.807830 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12544 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114286280", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.525812, 38.817005 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12534 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451301", "POINTID": "1102653994051", "FULLNAME": "Oolitic", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.525271, 38.900882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451060", "POINTID": "1102654013803", "FULLNAME": "Hopkins Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.522216, 38.918384 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433486", "POINTID": "1102653951655", "FULLNAME": "Depot Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.526384, 39.011715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060844563", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.517699, 39.035688 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114994169", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.518249, 39.029565 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060844562", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.519684, 39.036638 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015682444642", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.520794, 39.046315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060869216", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.524120, 39.100588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045879350", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.520174, 39.113051 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452286", "POINTID": "1102653956021", "FULLNAME": "Bloomington Speedway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.523570, 39.110504 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015482483059", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.523667, 39.105317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045878801", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.523857, 39.119842 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045878784", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.521972, 39.120876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046624667", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.527400, 39.125940 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045878680", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.523868, 39.131893 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045878592", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.524482, 39.143084 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473868249", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.521741, 39.138420 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472632172", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.526360, 39.149374 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045878470", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.519442, 39.152981 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045878471", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.518595, 39.151329 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431207", "POINTID": "1102653968514", "FULLNAME": "Bloomington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.526386, 39.165324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103471673789", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.525118, 39.192909 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438636", "POINTID": "1102653989542", "FULLNAME": "Marlin Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.523331, 39.213101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114993859", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.525906, 39.262833 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452127", "POINTID": "1102654002134", "FULLNAME": "Wayport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.520815, 39.265852 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430975", "POINTID": "1102654007565", "FULLNAME": "Bethlehem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.518053, 39.462269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438071", "POINTID": "1102653953186", "FULLNAME": "Little Hurricane Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.520553, 39.483102 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435940", "POINTID": "1102653982983", "FULLNAME": "Hazelwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.521942, 39.615603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093837", "POINTID": "1102654014281", "FULLNAME": "Jones Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.524445, 39.647776 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432600", "POINTID": "1102654009990", "FULLNAME": "Clayton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.522776, 39.674768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432598", "POINTID": "1102653973015", "FULLNAME": "Clayton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.522497, 39.689211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093552", "POINTID": "1102654009869", "FULLNAME": "Christie West Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.523610, 39.724167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093552", "POINTID": "1102654009869", "FULLNAME": "Christie West Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.523610, 39.724167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093647", "POINTID": "1102654011118", "FULLNAME": "Danville South Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.525000, 39.754445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433314", "POINTID": "1102653975065", "FULLNAME": "Danville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.526386, 39.760602 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264210132", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.518570, 39.765111 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699642992", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.527907, 39.768614 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093769", "POINTID": "1102654020820", "FULLNAME": "Templin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.523887, 39.780834 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093548", "POINTID": "1102654006744", "FULLNAME": "Arnold Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.519166, 39.787222 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093656", "POINTID": "1102654014023", "FULLNAME": "Hyten Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.519721, 39.802501 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292372", "FULLNAME": "Haffner Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.526499, 39.876975 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440028", "POINTID": "1102653992353", "FULLNAME": "New Brunswick", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.522776, 39.944210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446316", "POINTID": "1102654003309", "FULLNAME": "Woodside Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.526942, 40.290591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446704", "POINTID": "1102653996106", "FULLNAME": "Ray", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.525273, 40.454201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433265", "POINTID": "1102653974849", "FULLNAME": "Cutler", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.524155, 40.476421 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12342 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431531", "POINTID": "1102653969616", "FULLNAME": "Bringhurst", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.524994, 40.525311 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12340 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434609", "POINTID": "1102653979220", "FULLNAME": "Flora", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.524439, 40.547257 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12339 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434609", "POINTID": "1102653979220", "FULLNAME": "Flora", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.524439, 40.547257 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02080648", "POINTID": "1102653986758", "FULLNAME": "Lake Cicott Post Office", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.524997, 40.763887 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437524", "POINTID": "1102653986746", "FULLNAME": "Lake Cicott", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.524168, 40.764204 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02080648", "POINTID": "1102653986758", "FULLNAME": "Lake Cicott Post Office", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.524997, 40.763887 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437679", "POINTID": "1102653987444", "FULLNAME": "Lawton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.525005, 41.099761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12252 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440491", "POINTID": "1102653993776", "FULLNAME": "Ober", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.524455, 41.270870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110402004402", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.528476, 41.620004 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443042", "POINTID": "1102654019326", "FULLNAME": "Sauktown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.526126, 41.630598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102639178000", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.520545, 41.688609 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102639178667", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.524147, 41.689819 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102639177825", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.521797, 41.692401 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12646 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450795", "POINTID": "1102654010516", "FULLNAME": "Connor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.511366, 37.937560 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451189", "POINTID": "1102654015344", "FULLNAME": "Luxenburger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.511924, 38.164783 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12617 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451444", "POINTID": "1102654019483", "FULLNAME": "Senn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.516368, 38.188115 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451645", "POINTID": "1102654022234", "FULLNAME": "Woolums Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.507203, 38.189226 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450855", "POINTID": "1102654011336", "FULLNAME": "Doan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.516092, 38.210893 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450963", "POINTID": "1102654012567", "FULLNAME": "Goad Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.508314, 38.210617 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441778", "POINTID": "1102653954155", "FULLNAME": "Rariden Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.513324, 38.757829 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451560", "POINTID": "1102654020875", "FULLNAME": "Thomason Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.515548, 38.776440 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451540", "POINTID": "1102654000330", "FULLNAME": "Tarry Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.509159, 38.801440 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450814", "POINTID": "1102654010866", "FULLNAME": "Crest Haven Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.509159, 38.807274 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12542 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114289221", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.516379, 38.837809 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114259806", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.511637, 38.851498 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114436880", "FULLNAME": "Hospital", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.513238, 38.859897 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12535 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450880", "POINTID": "1102653976886", "FULLNAME": "East Oolitic", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.511937, 38.898938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12533 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451266", "POINTID": "1102653991972", "FULLNAME": "Murdock", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.508327, 38.909771 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451170", "POINTID": "1102653988427", "FULLNAME": "Logan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.508048, 38.942271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451170", "POINTID": "1102653988427", "FULLNAME": "Logan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.508048, 38.942271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451022", "POINTID": "1102654013280", "FULLNAME": "Hayes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.513606, 38.958105 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450992", "POINTID": "1102653981999", "FULLNAME": "Guthrie", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.509161, 38.976716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060844435", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.515727, 39.036051 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060844436", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.515548, 39.037584 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060844434", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.508086, 39.038670 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114942309", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.511878, 39.052777 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114990206", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.510245, 39.054995 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452083", "POINTID": "1102653998665", "FULLNAME": "Smithville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.506940, 39.071160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12513 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442994", "POINTID": "1102653997601", "FULLNAME": "Sanders", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.513329, 39.079770 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051951402", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.513115, 39.094616 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060869281", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.506611, 39.095876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051951385", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.512117, 39.097408 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060869286", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.510363, 39.097170 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060869281", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.506611, 39.095876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060847178", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.506975, 39.111378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472341767", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.506900, 39.116864 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045879696", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.510545, 39.130210 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473868133", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.516789, 39.128716 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045879765", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.510481, 39.128263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473867883", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.516414, 39.134916 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045879694", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.508955, 39.129990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046625314", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.512627, 39.145665 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046625310", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.509612, 39.145719 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046624812", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.506160, 39.141199 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051930473", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.513681, 39.154169 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051930744", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.511806, 39.151352 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060868869", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.512916, 39.238698 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060868868", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.511092, 39.238413 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12493 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442950", "POINTID": "1102654019245", "FULLNAME": "Sample Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.515274, 39.257267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114992586", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.509067, 39.281326 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114992577", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.508965, 39.283485 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444243", "POINTID": "1102654020465", "FULLNAME": "Stout Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.507219, 39.410047 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439564", "POINTID": "1102654016377", "FULLNAME": "Mount Gilead Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.507496, 39.404213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431504", "POINTID": "1102653969438", "FULLNAME": "Briarwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.506664, 39.550879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699619175", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.514984, 39.759043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699449349", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.511353, 39.773079 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093660", "POINTID": "1102654014512", "FULLNAME": "Kiger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.516666, 39.781388 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093550", "POINTID": "1102654006835", "FULLNAME": "Ayears Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.515000, 39.793332 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093645", "POINTID": "1102654010178", "FULLNAME": "Cofer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.515832, 39.813054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441750", "POINTID": "1102653996015", "FULLNAME": "Raintown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.509998, 39.878376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435934", "POINTID": "1102653982962", "FULLNAME": "Hazel College", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.510291, 40.046427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441809", "POINTID": "1102653996144", "FULLNAME": "Reagan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.509443, 40.191979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435445", "POINTID": "1102654012881", "FULLNAME": "Greenlawn Memorial Pk", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.511943, 40.259480 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12373 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110263414360", "FULLNAME": "County Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.511125, 40.269842 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434761", "POINTID": "1102653979826", "FULLNAME": "Frankfort", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.510824, 40.279479 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440599", "POINTID": "1102654017343", "FULLNAME": "Old South Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.506388, 40.271979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434761", "POINTID": "1102653979826", "FULLNAME": "Frankfort", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.510824, 40.279479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110263414395", "FULLNAME": "Golf Crs", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -86.507364, 40.295632 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12360 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446667", "POINTID": "1102653977518", "FULLNAME": "Ellis", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.510274, 40.372256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439418", "POINTID": "1102653991415", "FULLNAME": "Moran", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.515274, 40.387535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443192", "POINTID": "1102653997970", "FULLNAME": "Sedalia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.514719, 40.415589 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430014", "POINTID": "1102653964072", "FULLNAME": "Adams Mill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.508882, 40.480590 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12328 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446703", "POINTID": "1102653979169", "FULLNAME": "Flax", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.516666, 40.641703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12324 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577084930", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.515867, 40.672522 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431874", "POINTID": "1102653970843", "FULLNAME": "Burrows", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.507498, 40.676704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292449", "FULLNAME": "Dreessen Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.509011, 41.449474 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103717964745", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.514952, 41.694800 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8509, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102639181971", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.515003, 41.699913 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103900768441", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.507699, 41.702715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451306", "POINTID": "1102653994133", "FULLNAME": "Oriole", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.504703, 38.168950 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451306", "POINTID": "1102653994133", "FULLNAME": "Oriole", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.504703, 38.168950 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451106", "POINTID": "1102654014270", "FULLNAME": "Jones Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.501925, 38.207004 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12612 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450913", "POINTID": "1102654011938", "FULLNAME": "Fessler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.502759, 38.233393 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451583", "POINTID": "1102653955112", "FULLNAME": "Tunnel Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.505540, 38.340613 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450721", "POINTID": "1102653970054", "FULLNAME": "Brownstown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.503040, 38.380891 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451651", "POINTID": "1102654003565", "FULLNAME": "Youngs Creek", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.495541, 38.476722 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450735", "POINTID": "1102654008987", "FULLNAME": "Burton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.501935, 38.714497 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499371559", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.497201, 38.759149 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452365", "POINTID": "1102653960848", "FULLNAME": "Mitchell Speedway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.500546, 38.766164 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451776", "POINTID": "1102653996191", "FULLNAME": "Redding", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.503880, 38.774497 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114264918", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.502863, 38.797320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12544 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942348163", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.502316, 38.822110 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114273695", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.505471, 38.840405 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434202", "POINTID": "1102653977770", "FULLNAME": "Englewood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.498049, 38.844496 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108614179301", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.506541, 38.850316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942359298", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.503617, 38.858792 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114261733", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.496128, 38.860231 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942368068", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.498288, 38.875181 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12533 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451657", "POINTID": "1102654000587", "FULLNAME": "Thornton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.501383, 38.916717 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451325", "POINTID": "1102653994613", "FULLNAME": "Peerless", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.503327, 38.924495 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451657", "POINTID": "1102654000587", "FULLNAME": "Thornton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.501383, 38.916717 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451658", "POINTID": "1102653999441", "FULLNAME": "Stemm", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.504162, 38.956994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451006", "POINTID": "1102654013119", "FULLNAME": "Hanson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.501941, 38.995605 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114946085", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.503545, 39.032957 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060928059", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.502332, 39.075191 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451182", "POINTID": "1102654015292", "FULLNAME": "Lucas Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.498328, 39.074492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114942115", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.504191, 39.093348 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110115002203", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.500836, 39.093504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114943947", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.505031, 39.097866 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472342075", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.502571, 39.111519 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472342101", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.502373, 39.108002 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472341745", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.503491, 39.116583 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045879763", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.505774, 39.128054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473865162", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.506535, 39.134764 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473865135", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.505401, 39.135395 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473877725", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.505363, 39.142784 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473864245", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.500616, 39.138507 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046625316", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.506522, 39.148688 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046625397", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.502952, 39.153154 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473890764", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.497480, 39.147731 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432773", "POINTID": "1102653956844", "FULLNAME": "College Mall Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.495828, 39.162269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433612", "POINTID": "1102653976002", "FULLNAME": "Dolan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.499162, 39.240324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444986", "POINTID": "1102654001057", "FULLNAME": "Turkey Track", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.498331, 39.354491 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431641", "POINTID": "1102653970002", "FULLNAME": "Browns Crossing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.505554, 39.406435 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104494774255", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.499186, 39.408601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436674", "POINTID": "1102654014013", "FULLNAME": "Hynds Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.502220, 39.413657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047695358", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.501804, 39.517640 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093835", "POINTID": "1102654012249", "FULLNAME": "Friendship Missionary Baptist Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.496389, 39.629166 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292401", "FULLNAME": "Cooper Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.502888, 39.641421 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093832", "POINTID": "1102654008738", "FULLNAME": "Buchanan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.498888, 39.687777 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292289", "FULLNAME": "Hendricks Community Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.501182, 39.763752 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103700018578", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.495699, 39.759530 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015488730635", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.505540, 39.772745 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015488726652", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.502171, 39.778870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094096", "POINTID": "1102654015184", "FULLNAME": "Long Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.499720, 39.820556 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438584", "POINTID": "1102653989333", "FULLNAME": "Maplewood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.505275, 39.834489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292267", "FULLNAME": "Dunbar Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.503995, 39.843363 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439175", "POINTID": "1102653990694", "FULLNAME": "Milledgeville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.496941, 39.974208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430198", "POINTID": "1102653965246", "FULLNAME": "Antioch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.505851, 40.228100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12373 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110262952772", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.503971, 40.269773 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440599", "POINTID": "1102654017343", "FULLNAME": "Old South Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.506388, 40.271979 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110262959149", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.497150, 40.275705 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262888033", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.504669, 40.286429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12369 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110263414394", "FULLNAME": "Golf Crs", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -86.504642, 40.296575 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12368 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110262984260", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.501174, 40.307232 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12363 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437301", "POINTID": "1102653986029", "FULLNAME": "Kilmore", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.505554, 40.348646 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440550", "POINTID": "1102654017215", "FULLNAME": "Old Chaney Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.497496, 40.386979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12340 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438568", "POINTID": "1102654015430", "FULLNAME": "Maple Lawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.501662, 40.546144 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439905", "POINTID": "1102654016643", "FULLNAME": "Musselman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.501941, 40.591425 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12327 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446321", "POINTID": "1102654022228", "FULLNAME": "Woodville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.496386, 40.655315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12323 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577084929", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.496563, 40.683992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12320 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441462", "POINTID": "1102654018046", "FULLNAME": "Porter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.496389, 40.706704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435024", "POINTID": "1102653980562", "FULLNAME": "Georgetown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.504722, 40.740594 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452362", "POINTID": "1102653960702", "FULLNAME": "Micro-Midget Racetrack", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.505001, 40.764761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449723", "POINTID": "1102653997140", "FULLNAME": "Royal Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.499723, 40.864483 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12255 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292499", "FULLNAME": "Van de Mark Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.501788, 41.246694 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12240 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449664", "POINTID": "1102653981863", "FULLNAME": "Grovertown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.504730, 41.375041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344792474", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.497899, 41.465296 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452719", "POINTID": "1102654017445", "FULLNAME": "Olive Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.505570, 41.657822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344846787", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.502499, 41.684224 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102639173993", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.503542, 41.705696 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102639183871", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.498137, 41.700820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102639173993", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.503542, 41.705696 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12624 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451296", "POINTID": "1102654017220", "FULLNAME": "Old Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.494146, 38.127839 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12618 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451098", "POINTID": "1102654014223", "FULLNAME": "Jeffries Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.488312, 38.185061 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292077", "FULLNAME": "Roberson Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.489554, 38.320820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451651", "POINTID": "1102654003565", "FULLNAME": "Youngs Creek", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.495541, 38.476722 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12574 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450705", "POINTID": "1102653969212", "FULLNAME": "Braxtons Siding", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.488044, 38.559222 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718304792", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.486827, 38.656933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12560 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444807", "POINTID": "1102653955020", "FULLNAME": "Tom Rice Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.487489, 38.684775 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114436948", "FULLNAME": "Mitchell City Park", "MTFCC": "K2188" }, "geometry": { "type": "Point", "coordinates": [ -86.489136, 38.737036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114436887", "FULLNAME": "Hatfield Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.488245, 38.742959 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114436948", "FULLNAME": "Mitchell City Park", "MTFCC": "K2188" }, "geometry": { "type": "Point", "coordinates": [ -86.489136, 38.737036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00448361", "POINTID": "1102654003314", "FULLNAME": "Woodville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.484992, 38.755886 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446395", "POINTID": "1102654003480", "FULLNAME": "Yockey", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.493047, 38.788107 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114436879", "FULLNAME": "Dunn Memorial Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.494567, 38.852661 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435402", "POINTID": "1102654012845", "FULLNAME": "Green Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.487666, 38.856006 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450667", "POINTID": "1102653967268", "FULLNAME": "Bedford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.487215, 38.861162 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450706", "POINTID": "1102654008295", "FULLNAME": "Breckinridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.488605, 38.881439 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12535 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114274597", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.487677, 38.895377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451004", "POINTID": "1102653982239", "FULLNAME": "Handy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.493883, 39.095882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451004", "POINTID": "1102653982239", "FULLNAME": "Handy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.493883, 39.095882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114999047", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.490563, 39.116508 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060846961", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.488039, 39.114651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473863726", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.491486, 39.138457 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473875938", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.487540, 39.132424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473862343", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.494873, 39.145226 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473863726", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.491486, 39.138457 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730284682", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.484316, 39.144328 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473890720", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.492966, 39.149010 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473862329", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.486244, 39.149601 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473862337", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.492647, 39.147049 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436414", "POINTID": "1102653984208", "FULLNAME": "Hoosier Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.486939, 39.157825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045877828", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.487489, 39.176389 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436675", "POINTID": "1102653984735", "FULLNAME": "Hyndsdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.484718, 39.415878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443119", "POINTID": "1102654019399", "FULLNAME": "Schultz Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.491107, 39.427546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443119", "POINTID": "1102654019399", "FULLNAME": "Schultz Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.491107, 39.427546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264078650", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.489525, 39.634836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093855", "POINTID": "1102654021159", "FULLNAME": "Ungles Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.484721, 39.680554 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446675", "POINTID": "1102653993252", "FULLNAME": "North Belleville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.494441, 39.694491 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264237828", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.494018, 39.766474 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264202500", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.494929, 39.764703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699727012", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.492931, 39.773801 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264221233", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.495144, 39.766649 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699725713", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.489546, 39.774978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046023477", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.491467, 40.060388 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066058028", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.491228, 40.055689 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066058178", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.488707, 40.055188 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046018126", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.492786, 40.066789 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103694821323", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.486416, 40.067158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12373 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262893758", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.488886, 40.268622 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110262961330", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.490686, 40.276403 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437259", "POINTID": "1102653985914", "FULLNAME": "Kentwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.489721, 40.276978 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442063", "POINTID": "1102653996575", "FULLNAME": "Risse", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.486942, 40.275034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110262961367", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.491459, 40.286235 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110262961349", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.488801, 40.281869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262960129", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.484410, 40.290043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437810", "POINTID": "1102653987849", "FULLNAME": "Lexington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.488884, 40.458922 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12341 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262896331", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.491070, 40.538652 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262896458", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.488101, 40.538381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12292 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445275", "POINTID": "1102654021344", "FULLNAME": "Victor Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.486389, 40.943373 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440400", "POINTID": "1102653993619", "FULLNAME": "Oak Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.486118, 41.287818 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437438", "POINTID": "1102653986523", "FULLNAME": "Koontz Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.485842, 41.418098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437438", "POINTID": "1102653986523", "FULLNAME": "Koontz Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.485842, 41.418098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344854760", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.486950, 41.457024 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12632 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450847", "POINTID": "1102653975795", "FULLNAME": "Dexter", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.478587, 38.059228 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451528", "POINTID": "1102653999793", "FULLNAME": "Sulphur Springs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.474979, 38.212004 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435639", "POINTID": "1102654013066", "FULLNAME": "Hamilton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.477482, 38.315338 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437596", "POINTID": "1102654014773", "FULLNAME": "Land Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.475816, 38.335336 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450905", "POINTID": "1102653978444", "FULLNAME": "Fargo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.483318, 38.400057 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12575 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451827", "POINTID": "1102654017621", "FULLNAME": "Paoli Community Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.475542, 38.549221 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292360", "FULLNAME": "Indiana University Health Paoli Incorporated Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.476111, 38.568332 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114436885", "FULLNAME": "Mitchell Jr & Sr High School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.479646, 38.736538 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439292", "POINTID": "1102653990943", "FULLNAME": "Mitchell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.473601, 38.732831 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114283723", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.476248, 38.743689 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441711", "POINTID": "1102653995915", "FULLNAME": "Rabbitville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.473880, 38.768663 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262935435", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.478404, 38.793622 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443132", "POINTID": "1102654019409", "FULLNAME": "Scoggan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.481382, 38.828941 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12542 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108656563384", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.476237, 38.835556 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262936984", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.479115, 38.851980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262928511", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.474360, 38.876944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12534 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114277377", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.476074, 38.906580 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060846958", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.482471, 39.115952 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472632366", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.482522, 39.130726 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730284854", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.484472, 39.145258 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473862328", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.483509, 39.146757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045876083", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.477560, 39.155704 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473862334", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.483511, 39.152324 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045876082", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.474309, 39.155441 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045875487", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.480263, 39.162467 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045876062", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.476658, 39.158507 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051935286", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.482599, 39.171590 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051935323", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.478699, 39.172553 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045877535", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.481985, 39.174634 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045875513", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.474137, 39.175337 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051935323", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.478699, 39.172553 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436233", "POINTID": "1102653983837", "FULLNAME": "Hindustan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.483329, 39.308101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436913", "POINTID": "1102653952882", "FULLNAME": "Jakes Butte", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.480550, 39.460325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434699", "POINTID": "1102654012117", "FULLNAME": "Foster Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.474440, 39.466990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104262251807", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.475057, 39.543138 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292658", "FULLNAME": "Pegasus Farms Airfield", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.475392, 39.548321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439349", "POINTID": "1102653991185", "FULLNAME": "Monrovia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.482219, 39.578934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267849540", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.481395, 39.580921 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093833", "POINTID": "1102654009632", "FULLNAME": "Center Valley Friendship Baptist Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.481111, 39.629722 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443983", "POINTID": "1102654020158", "FULLNAME": "Spring Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.474995, 39.709489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292348", "FULLNAME": "Hendricks County-Gordon Graham Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.475164, 39.746778 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108297180704", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.474006, 39.759705 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094662", "POINTID": "1102653961855", "FULLNAME": "Pittsboro Golf Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.483887, 39.866109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439716", "POINTID": "1102654016537", "FULLNAME": "Mount Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.481108, 39.986430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066058199", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.481387, 40.043019 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066058031", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.484506, 40.054408 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066056839", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.482707, 40.056658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105632968341", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.481878, 40.067938 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046023463", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.481757, 40.062349 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440329", "POINTID": "1102653993509", "FULLNAME": "Northfield Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.477774, 40.061704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444272", "POINTID": "1102653999722", "FULLNAME": "Stringtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.476664, 40.081706 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430896", "POINTID": "1102654007459", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.480293, 40.113098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441127", "POINTID": "1102653994955", "FULLNAME": "Pike", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.481942, 40.124203 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438956", "POINTID": "1102653990132", "FULLNAME": "Mechanicsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.481108, 40.159759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431818", "POINTID": "1102654008830", "FULLNAME": "Buntin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.481387, 40.205870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103717797370", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.474521, 40.261750 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262960129", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.484410, 40.290043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12363 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262958461", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.481178, 40.351054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577085946", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.476940, 40.691983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12303 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432666", "POINTID": "1102654010077", "FULLNAME": "Cline Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.477222, 40.853094 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12286 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439868", "POINTID": "1102654016608", "FULLNAME": "Mull Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.480834, 40.992538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439355", "POINTID": "1102653991223", "FULLNAME": "Monterey", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.482782, 41.156985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440306", "POINTID": "1102654017003", "FULLNAME": "North Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.481395, 41.243929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452831", "POINTID": "1102654001751", "FULLNAME": "Walkerton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.483066, 41.466711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344914758", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.477551, 41.473548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452819", "POINTID": "1102654000494", "FULLNAME": "Terre Coupee", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.477238, 41.702266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441218", "POINTID": "1102653995121", "FULLNAME": "Plainfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.476682, 41.708101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452615", "POINTID": "1102653982183", "FULLNAME": "Hamilton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.478072, 41.732268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12632 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451510", "POINTID": "1102654020335", "FULLNAME": "Stephenson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.462754, 38.062284 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451192", "POINTID": "1102653989002", "FULLNAME": "Magnet", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.463312, 38.096728 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110115870866", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.467348, 38.108267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12625 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450743", "POINTID": "1102653956454", "FULLNAME": "Buzzard Roost Overlook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.465532, 38.120061 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12613 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451522", "POINTID": "1102653999781", "FULLNAME": "Sulphur", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.470776, 38.227500 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449662", "POINTID": "1102653981346", "FULLNAME": "Grantsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.469424, 38.288116 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435317", "POINTID": "1102654012750", "FULLNAME": "Grant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.473037, 38.294505 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433468", "POINTID": "1102654011247", "FULLNAME": "Denbo Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.472482, 38.331170 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434203", "POINTID": "1102653977787", "FULLNAME": "English", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.464148, 38.334503 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443613", "POINTID": "1102654019895", "FULLNAME": "Sloan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.466372, 38.342281 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444146", "POINTID": "1102654020359", "FULLNAME": "Stewart Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.469151, 38.368392 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12575 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451312", "POINTID": "1102653994392", "FULLNAME": "Paoli", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.468322, 38.556166 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110115619142", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.465372, 38.665755 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114285372", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.468215, 38.716140 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114285382", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.466670, 38.715782 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114285433", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.464661, 38.712258 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439292", "POINTID": "1102653990943", "FULLNAME": "Mitchell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.473601, 38.732831 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114436950", "FULLNAME": "Fire Dept", "MTFCC": "K2193" }, "geometry": { "type": "Point", "coordinates": [ -86.470366, 38.734306 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114261762", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.468011, 38.859122 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450809", "POINTID": "1102653974130", "FULLNAME": "Coveyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.472493, 38.973383 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00453052", "POINTID": "1102653956460", "FULLNAME": "Buzzard Roost Recreation Area", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.463883, 39.127826 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045876084", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.472241, 39.154385 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045878153", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.464406, 39.154730 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045876078", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.473501, 39.157099 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060846509", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.469392, 39.163024 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045876117", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.465739, 39.157043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045875510", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.472616, 39.174333 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110115000231", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.469996, 39.213180 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440120", "POINTID": "1102653992930", "FULLNAME": "New Unionville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.462217, 39.211158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060930951", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.465498, 39.245688 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445890", "POINTID": "1102653963629", "FULLNAME": "Wheeler Mission Campground", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.467496, 39.284211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438755", "POINTID": "1102654015596", "FULLNAME": "Maxwell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.468885, 39.382824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12477 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267838456", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.471417, 39.392865 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438757", "POINTID": "1102653953404", "FULLNAME": "Maxwell Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.467772, 39.389768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441644", "POINTID": "1102653954122", "FULLNAME": "Pumpkinvine Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.462217, 39.445324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479423", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.472249, 39.542546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436153", "POINTID": "1102654013527", "FULLNAME": "Highland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.470272, 39.550602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264207394", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.468794, 39.615851 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096190", "POINTID": "1102653957173", "FULLNAME": "Deer Creek Golf Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.472777, 39.640833 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093854", "POINTID": "1102654019240", "FULLNAME": "Salem Methodist Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.462499, 39.640277 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449632", "POINTID": "1102653971667", "FULLNAME": "Cartersburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.463607, 39.698658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449632", "POINTID": "1102653971667", "FULLNAME": "Cartersburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.463607, 39.698658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446681", "POINTID": "1102653989011", "FULLNAME": "Magnetic Springs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.472774, 39.708658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103700034074", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.471018, 39.763261 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103700036922", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.463776, 39.760742 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262933622", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.469475, 39.768814 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449493", "POINTID": "1102653980198", "FULLNAME": "Gale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.466662, 39.766713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264235716", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.471771, 39.847850 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262925638", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.462448, 39.857559 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015482150200", "FULLNAME": "Pittsboro Town Hall", "MTFCC": "K2196" }, "geometry": { "type": "Point", "coordinates": [ -86.468148, 39.864780 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441210", "POINTID": "1102653995111", "FULLNAME": "Pittsboro", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.466925, 39.863973 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046694914", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.464285, 39.868932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442173", "POINTID": "1102654018646", "FULLNAME": "Robinson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.469164, 40.006707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437719", "POINTID": "1102653987505", "FULLNAME": "Lebanon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.469191, 40.048370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046023540", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.468357, 40.058569 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066058181", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.472297, 40.067868 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445034", "POINTID": "1102654001151", "FULLNAME": "Ulen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.464441, 40.063094 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046023522", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.471938, 40.075069 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046023521", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.467847, 40.075079 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12366 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437686", "POINTID": "1102654014875", "FULLNAME": "Layton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.464720, 40.322256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435475", "POINTID": "1102653980440", "FULLNAME": "Geetingsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.468606, 40.416422 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436670", "POINTID": "1102654014008", "FULLNAME": "Hye Park Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.468048, 40.431424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577085945", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.467952, 40.696500 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12321 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577085944", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.467960, 40.698725 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437248", "POINTID": "1102653985876", "FULLNAME": "Kenneth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.473056, 40.761151 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431656", "POINTID": "1102653986735", "FULLNAME": "Lake Bruce", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.464449, 41.070317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292428", "FULLNAME": "May's Strip", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.468526, 41.452391 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12607 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443219", "POINTID": "1102654019497", "FULLNAME": "Seton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.455536, 38.278671 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12572 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292352", "FULLNAME": "Paoli Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.461995, 38.581813 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449949", "POINTID": "1102654003262", "FULLNAME": "Woodlawn Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.458044, 38.578110 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12569 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451660", "POINTID": "1102653988641", "FULLNAME": "Lost River", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.451376, 38.606999 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441140", "POINTID": "1102653961779", "FULLNAME": "Pilgrim Campground", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.458323, 38.646998 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051988431", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.461214, 38.658441 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434313", "POINTID": "1102654011802", "FULLNAME": "Fairview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.461099, 38.663941 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440701", "POINTID": "1102653994148", "FULLNAME": "Orleans", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.451655, 38.661719 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434236", "POINTID": "1102654011721", "FULLNAME": "Erwin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.460825, 38.773107 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443329", "POINTID": "1102654019578", "FULLNAME": "Sheeks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.453878, 38.787553 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108635063988", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.453980, 38.870922 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108635203221", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.458650, 38.874712 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108635213880", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.456606, 38.875019 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450808", "POINTID": "1102654010757", "FULLNAME": "Covey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.453326, 38.983661 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060846703", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.453066, 39.215308 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440120", "POINTID": "1102653992930", "FULLNAME": "New Unionville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.462217, 39.211158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060846703", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.453066, 39.215308 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114993570", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.460903, 39.224420 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114997859", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.457298, 39.237320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441567", "POINTID": "1102653995659", "FULLNAME": "Prather", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.455252, 39.378084 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12477 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267784327", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.460160, 39.387179 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438752", "POINTID": "1102653989809", "FULLNAME": "Maxwell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.455552, 39.387268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104692562145", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.453323, 39.444301 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441644", "POINTID": "1102653954122", "FULLNAME": "Pumpkinvine Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.462217, 39.445324 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051950556", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.452891, 39.449715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093853", "POINTID": "1102654016961", "FULLNAME": "North Branch Friends Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.453610, 39.630001 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093854", "POINTID": "1102654019240", "FULLNAME": "Salem Methodist Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.462499, 39.640277 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093834", "POINTID": "1102654011150", "FULLNAME": "Davis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.452500, 39.683054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052106727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.453645, 39.748778 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052061480", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.451864, 39.754222 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052060309", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.454584, 39.766490 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094650", "POINTID": "1102653958806", "FULLNAME": "Hendricks County Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.456944, 39.764167 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052060297", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.453200, 39.765833 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047018913", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.452551, 39.759338 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052060302", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.456633, 39.767511 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262925638", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.462448, 39.857559 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262925171", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.452430, 39.857487 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103688259638", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.451424, 39.851582 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103688134105", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.451252, 39.852992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015482150823", "FULLNAME": "Pittsboro Fire Dept", "MTFCC": "K2193" }, "geometry": { "type": "Point", "coordinates": [ -86.458468, 39.861564 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262925615", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.456413, 39.863044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052093272", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.461268, 39.876046 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103719153081", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.458519, 39.875807 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052093272", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.461268, 39.876046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066057553", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.455836, 40.047538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066058122", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.455986, 40.058469 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434134", "POINTID": "1102653977630", "FULLNAME": "Elmwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.461941, 40.067817 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066057273", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.462437, 40.071838 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066057249", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.460887, 40.071038 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016954816830", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.455981, 40.078765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434970", "POINTID": "1102654012397", "FULLNAME": "Garrett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.453052, 40.163369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12320 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432698", "POINTID": "1102654010162", "FULLNAME": "Clymers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.460275, 40.706982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446698", "POINTID": "1102653981930", "FULLNAME": "Guise Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.456898, 41.077766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328452415", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.459551, 41.166136 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446447", "POINTID": "1102654022405", "FULLNAME": "Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.453894, 41.189484 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12251 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292597", "FULLNAME": "I & C Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.461509, 41.283083 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8514, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292490", "FULLNAME": "Stewarts Green Acres Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.451513, 41.544754 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450844", "POINTID": "1102653975724", "FULLNAME": "Deuchars", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.448289, 38.172642 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12607 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443220", "POINTID": "1102653954610", "FULLNAME": "Seton Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.449702, 38.280616 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110135829968", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.444364, 38.349450 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451373", "POINTID": "1102654018194", "FULLNAME": "Purkhiser Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.443871, 38.393669 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12587 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292383", "FULLNAME": "Gibbons Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.443828, 38.447153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451336", "POINTID": "1102653995037", "FULLNAME": "Pine Vly", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.450263, 38.476445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12569 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451660", "POINTID": "1102653988641", "FULLNAME": "Lost River", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.451376, 38.606999 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292368", "FULLNAME": "Orleans Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.441768, 38.657819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12542 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292595", "FULLNAME": "Virgil I Grissom Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.444086, 38.839459 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12531 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450645", "POINTID": "1102654006866", "FULLNAME": "Bailey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.446382, 38.928662 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450655", "POINTID": "1102653966809", "FULLNAME": "Bartlettsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.441894, 38.970337 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450765", "POINTID": "1102653972361", "FULLNAME": "Chapel Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.449160, 38.998383 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114999622", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.446846, 39.016018 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114999170", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.442103, 39.026175 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296195065", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.441639, 39.077294 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813392564", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.446336, 39.167034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292645", "FULLNAME": "McDaniel's Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.442887, 39.408366 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438849", "POINTID": "1102653989996", "FULLNAME": "McDaniel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.440827, 39.411991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443598", "POINTID": "1102653954690", "FULLNAME": "Slaughterhouse Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.446660, 39.458657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430718", "POINTID": "1102653967318", "FULLNAME": "Beech Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.446384, 39.517268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431808", "POINTID": "1102653970599", "FULLNAME": "Bunker Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.441385, 39.566434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047041271", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.448498, 39.597043 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110268055764", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.443917, 39.597000 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267823210", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.448353, 39.598932 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292700", "FULLNAME": "Berling Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.441661, 39.603655 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267862175", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.442109, 39.611106 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093836", "POINTID": "1102654014140", "FULLNAME": "Irons Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.446111, 39.689166 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093852", "POINTID": "1102654016062", "FULLNAME": "Miles Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.445832, 39.689721 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096187", "POINTID": "1102653961532", "FULLNAME": "Oaktree Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.441111, 39.693888 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052106717", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.447591, 39.749151 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052061515", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.449581, 39.756136 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052087885", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.449887, 39.749650 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094651", "POINTID": "1102653962005", "FULLNAME": "Prestwick Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.441387, 39.753333 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047018917", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.450410, 39.758464 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264128192", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.440446, 39.759633 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00429990", "POINTID": "1102654006327", "FULLNAME": "Abner Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.447774, 39.782545 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047018935", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.441079, 39.781753 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264211852", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.441020, 39.776979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264178546", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.444665, 39.806628 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094097", "POINTID": "1102654018638", "FULLNAME": "Roberts Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.444997, 39.813054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094095", "POINTID": "1102654013913", "FULLNAME": "Hughes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.448610, 39.822500 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264107231", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.446618, 39.847356 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264099682", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.444947, 39.850542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103688259638", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.451424, 39.851582 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262925525", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.449584, 39.859097 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264099700", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.443348, 39.850585 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052069807", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.447798, 39.863429 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052069632", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.445314, 39.863359 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262925525", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.449584, 39.859097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046695011", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.449007, 39.876149 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052069811", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.447315, 39.867777 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046695006", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.448889, 39.877108 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12377 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430086", "POINTID": "1102654006565", "FULLNAME": "Allen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.445832, 40.235034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12368 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430354", "POINTID": "1102653966090", "FULLNAME": "Avery", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.440550, 40.308924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01955448", "POINTID": "1102654013787", "FULLNAME": "Hopewell Cemeteries", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.441106, 40.359201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12360 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430647", "POINTID": "1102653967084", "FULLNAME": "Beard", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.450550, 40.373645 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430293", "POINTID": "1102654006768", "FULLNAME": "Asbury Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.449160, 40.491424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12320 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432697", "POINTID": "1102653973235", "FULLNAME": "Clymers", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.448887, 40.707537 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435318", "POINTID": "1102654012756", "FULLNAME": "Grant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.440832, 40.833093 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12285 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430512", "POINTID": "1102654007054", "FULLNAME": "Barnett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.448889, 41.003373 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431653", "POINTID": "1102654008613", "FULLNAME": "Bruce Lake Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.446669, 41.061983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433144", "POINTID": "1102654010898", "FULLNAME": "Cromley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.442782, 41.179484 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109093917825", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.450244, 41.336732 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433626", "POINTID": "1102653976026", "FULLNAME": "Donaldson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.444174, 41.361152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452835", "POINTID": "1102654021756", "FULLNAME": "Westlawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.440765, 41.535043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292490", "FULLNAME": "Stewarts Green Acres Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.451513, 41.544754 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452716", "POINTID": "1102653994002", "FULLNAME": "Olive", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.448069, 41.700045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451394", "POINTID": "1102654018525", "FULLNAME": "Riddle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.435811, 38.170061 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12616 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451641", "POINTID": "1102654022097", "FULLNAME": "Wiseman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.437200, 38.202005 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12610 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441984", "POINTID": "1102653996441", "FULLNAME": "Riddle", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.430535, 38.250617 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433248", "POINTID": "1102654011059", "FULLNAME": "Cunningham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.439427, 38.313116 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450640", "POINTID": "1102653966239", "FULLNAME": "Bacon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.433316, 38.410613 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450640", "POINTID": "1102653966239", "FULLNAME": "Bacon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.433316, 38.410613 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12568 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451440", "POINTID": "1102654019416", "FULLNAME": "Scott Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.438321, 38.614221 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432140", "POINTID": "1102654009293", "FULLNAME": "Carlton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.429435, 38.796164 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436706", "POINTID": "1102654014041", "FULLNAME": "Ikerd Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.438855, 38.870487 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12534 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114277585", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.437552, 38.906632 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114999605", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.431369, 39.016497 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451860", "POINTID": "1102653962176", "FULLNAME": "Ransburg Boy Scout Reservation", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.431104, 39.051437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110115156711", "FULLNAME": "Knightridge Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -86.433872, 39.124725 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443383", "POINTID": "1102654019665", "FULLNAME": "Shiloh Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.437495, 39.262268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444131", "POINTID": "1102654020340", "FULLNAME": "Stepp Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.429993, 39.313656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047476621", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.437892, 39.409606 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267850865", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.432689, 39.408327 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047476612", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.437616, 39.412335 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472350538", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.436884, 39.425953 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01669482", "POINTID": "1102653986823", "FULLNAME": "Lake Hart", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.431938, 39.567546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447645", "POINTID": "1102653980368", "FULLNAME": "Gasburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.436937, 39.594491 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047041312", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.434341, 39.603564 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267817779", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.429704, 39.607875 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430107", "POINTID": "1102653964637", "FULLNAME": "Allman", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.431106, 39.617268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437108", "POINTID": "1102653985628", "FULLNAME": "Joppa", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.432217, 39.632267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103708189062", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.431538, 39.688245 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052296445", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.433257, 39.696895 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103708188906", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.430406, 39.692080 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052296583", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.434236, 39.702160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471588723", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.438654, 39.709166 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264147078", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.434486, 39.709417 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094105", "POINTID": "1102654015651", "FULLNAME": "McClain Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.436664, 39.746666 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262929244", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.438005, 39.756635 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262929243", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.434400, 39.756597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264128192", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.440446, 39.759633 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264204364", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.432056, 39.810767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444756", "POINTID": "1102654000619", "FULLNAME": "Tilden", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.438885, 39.821433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046971053", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.437077, 39.840941 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264246387", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.432667, 39.838565 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264256428", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.431656, 39.837337 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264099724", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.440145, 39.849240 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264202871", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.438643, 39.843892 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093999", "POINTID": "1102654018124", "FULLNAME": "Prebster Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.439392, 39.856388 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264107396", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.438571, 39.854201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264129079", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.436782, 39.863555 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264192053", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.431101, 39.862416 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443909", "POINTID": "1102654020101", "FULLNAME": "Sparks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.429556, 39.873002 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445598", "POINTID": "1102654021604", "FULLNAME": "Weaver Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.435830, 39.880599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436061", "POINTID": "1102653983267", "FULLNAME": "Herr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.431662, 39.955597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443358", "POINTID": "1102653998262", "FULLNAME": "Shepherd", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.431385, 39.967264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292058", "FULLNAME": "Boone County Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.439274, 40.006693 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433268", "POINTID": "1102653974892", "FULLNAME": "Cyclone", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.432496, 40.228368 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12368 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430354", "POINTID": "1102653966090", "FULLNAME": "Avery", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.440550, 40.308924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328454857", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.435087, 41.168200 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328452745", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.434413, 41.168559 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12253 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431861", "POINTID": "1102654008907", "FULLNAME": "Burr Oak Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.435006, 41.265596 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12242 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136448302", "FULLNAME": "Divine Heart Smry", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.438187, 41.356198 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433629", "POINTID": "1102654011381", "FULLNAME": "Donaldson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.430841, 41.362541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105281245278", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.430060, 41.522535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452715", "POINTID": "1102654017207", "FULLNAME": "Old Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.431399, 41.534766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452846", "POINTID": "1102654003607", "FULLNAME": "Zeigler", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.433625, 41.698379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292501", "FULLNAME": "Hustons Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.431514, 41.711421 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12624 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451305", "POINTID": "1102654017489", "FULLNAME": "Orchard Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.426367, 38.129784 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12616 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451099", "POINTID": "1102653985420", "FULLNAME": "Jericho", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.424422, 38.199227 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450671", "POINTID": "1102653967343", "FULLNAME": "Beechwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.424422, 38.206728 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12557 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452387", "POINTID": "1102653962075", "FULLNAME": "Purdue Experimental Orchard", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.426378, 38.707831 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443995", "POINTID": "1102653999225", "FULLNAME": "Spring Mill Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.426976, 38.735082 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435634", "POINTID": "1102654013065", "FULLNAME": "Hamer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.421509, 38.732990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432140", "POINTID": "1102654009293", "FULLNAME": "Carlton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.429435, 38.796164 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114277888", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.422850, 38.874031 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114259220", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.421507, 38.873924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114277888", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.422850, 38.874031 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114259220", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.421507, 38.873924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441134", "POINTID": "1102653953885", "FULLNAME": "Pike Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.428049, 39.164769 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103717563504", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.422352, 39.165919 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441413", "POINTID": "1102653954032", "FULLNAME": "Pollard Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.419994, 39.402267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441413", "POINTID": "1102653954032", "FULLNAME": "Pollard Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.419994, 39.402267 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047476926", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.418291, 39.408518 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267838298", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.422365, 39.417681 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267884082", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.420691, 39.411740 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438684", "POINTID": "1102653989624", "FULLNAME": "Martinsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.428328, 39.427823 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269196879", "FULLNAME": "County Home", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.429020, 39.425549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438684", "POINTID": "1102653989624", "FULLNAME": "Martinsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.428328, 39.427823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440374", "POINTID": "1102654017031", "FULLNAME": "Nutter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.423049, 39.463379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452272", "POINTID": "1102653956574", "FULLNAME": "Campbell Siding", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.425273, 39.477268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442135", "POINTID": "1102653954265", "FULLNAME": "Robb Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.421091, 39.510924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430963", "POINTID": "1102654007532", "FULLNAME": "Bethesda Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.419994, 39.578934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267819612", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.419766, 39.605820 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110268055695", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.422960, 39.604355 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267819612", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.419766, 39.605820 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267817819", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.418385, 39.606054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718789574", "FULLNAME": "Hickory Hollow Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.420976, 39.658428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103708189430", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.428368, 39.687888 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316569411", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.419079, 39.682491 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504224443", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.427560, 39.703491 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010886810415", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.427735, 39.714926 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718575494", "FULLNAME": "Bartram Ln", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.428990, 39.710156 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472489245", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.419026, 39.709846 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264225905", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.420297, 39.720617 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311403426", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.419629, 39.728221 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262929624", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.425643, 39.745239 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094110", "POINTID": "1102654019941", "FULLNAME": "Smith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.428609, 39.757777 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103719168966", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.429028, 39.752616 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094110", "POINTID": "1102654019941", "FULLNAME": "Smith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.428609, 39.757777 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094104", "POINTID": "1102654007020", "FULLNAME": "Barlow Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.420276, 39.784445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094111", "POINTID": "1102654021890", "FULLNAME": "White Lick Presbyterian Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.419165, 39.798888 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093997", "POINTID": "1102654013642", "FULLNAME": "Hoadley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.422220, 39.810001 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264204485", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.418428, 39.812088 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264202934", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.429127, 39.849442 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264163855", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.425318, 39.845149 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443909", "POINTID": "1102654020101", "FULLNAME": "Sparks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.429556, 39.873002 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264190922", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.428440, 39.867956 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432311", "POINTID": "1102654009590", "FULLNAME": "Center Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.419162, 40.040316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12383 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438883", "POINTID": "1102654015754", "FULLNAME": "McIntire Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.421107, 40.186703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12366 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431445", "POINTID": "1102654008247", "FULLNAME": "Brandon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.427496, 40.329479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12317 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442575", "POINTID": "1102654018980", "FULLNAME": "Saint Johns Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.424165, 40.735316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12299 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440573", "POINTID": "1102654017266", "FULLNAME": "Old Indian Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.426667, 40.887816 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12291 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435337", "POINTID": "1102654012775", "FULLNAME": "Grass Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.423333, 40.949206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12288 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292233", "FULLNAME": "Plummer Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.418723, 40.975303 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136304301", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.420973, 41.208773 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433239", "POINTID": "1102653974730", "FULLNAME": "Culver", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.423060, 41.218929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430482", "POINTID": "1102654006978", "FULLNAME": "Barber Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.421120, 41.443933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105281245270", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.428912, 41.522465 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452707", "POINTID": "1102653993331", "FULLNAME": "North Liberty", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.427233, 41.534212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452634", "POINTID": "1102653984399", "FULLNAME": "Hubbard", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.418902, 41.696434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12625 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450627", "POINTID": "1102653964775", "FULLNAME": "Alton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.417754, 38.122562 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12624 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451448", "POINTID": "1102654019573", "FULLNAME": "Sheckell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.408031, 38.134230 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12621 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450683", "POINTID": "1102654007668", "FULLNAME": "Birds Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.417199, 38.160061 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452495", "POINTID": "1102654000122", "FULLNAME": "Switzer Xroad", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.416647, 38.268951 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444626", "POINTID": "1102654000433", "FULLNAME": "Temple", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.415815, 38.344505 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12535 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451447", "POINTID": "1102653998209", "FULLNAME": "Shawswick", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.414436, 38.895607 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451538", "POINTID": "1102654020774", "FULLNAME": "Tanksley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.409158, 38.938384 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451021", "POINTID": "1102654013271", "FULLNAME": "Hawkins Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.417212, 38.967273 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437009", "POINTID": "1102653952892", "FULLNAME": "Jimmy Sexton Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.418049, 39.128660 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445140", "POINTID": "1102654001193", "FULLNAME": "Unionville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.416105, 39.230047 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434579", "POINTID": "1102653979179", "FULLNAME": "Fleener", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.412494, 39.282546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047476925", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.417682, 39.409025 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267815065", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.409995, 39.410460 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267850391", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.415590, 39.415553 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047476910", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.413541, 39.412637 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047476909", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.410156, 39.412675 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436190", "POINTID": "1102654013577", "FULLNAME": "Hill Dale Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.409995, 39.426713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267822359", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.411328, 39.438660 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437912", "POINTID": "1102653953151", "FULLNAME": "Lincoln Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.416939, 39.445601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047773354", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.415582, 39.459386 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047773299", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.409928, 39.456959 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446065", "POINTID": "1102654022029", "FULLNAME": "Williams Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.413605, 39.476991 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104699608462", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.407908, 39.472599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432561", "POINTID": "1102653951369", "FULLNAME": "Clark Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.408595, 39.479713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430496", "POINTID": "1102653950808", "FULLNAME": "Barnard Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.407452, 39.494377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052072080", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.410563, 39.512376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432343", "POINTID": "1102653972139", "FULLNAME": "Center Vly", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.408890, 39.513612 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052072080", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.410563, 39.512376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267862611", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.411086, 39.603673 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267817819", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.418385, 39.606054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110265526183", "FULLNAME": "in Dept of Corrections-Reception Diagnostic Ctr", "MTFCC": "K1237" }, "geometry": { "type": "Point", "coordinates": [ -86.417974, 39.689948 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110265526182", "FULLNAME": "in Dept of Corrections-Plainfield Corr Faclty", "MTFCC": "K1237" }, "geometry": { "type": "Point", "coordinates": [ -86.417955, 39.690667 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093827", "POINTID": "1102654014125", "FULLNAME": "Indiana Boy's School Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.408753, 39.696743 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264189324", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.413653, 39.703043 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264225938", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.412822, 39.701770 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110265526185", "FULLNAME": "Franklin Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -86.407398, 39.707760 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969772", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.415394, 39.726564 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969742", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.411092, 39.725572 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264213030", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.407535, 39.760835 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264185248", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.408047, 39.774466 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264212771", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.411977, 39.781858 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264182357", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.409018, 39.785317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052106804", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.408637, 39.798623 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264204485", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.418428, 39.812088 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093856", "POINTID": "1102654007329", "FULLNAME": "Bell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.409997, 39.811944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264171795", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.416424, 39.819676 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264170806", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.411389, 39.833483 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264171379", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.412076, 39.827774 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264203074", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.413186, 39.840558 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264116675", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.408930, 39.849317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016954162927", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.413358, 39.853626 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104486526788", "MTFCC": "C3071" }, "geometry": { "type": "Point", "coordinates": [ -86.411977, 39.865045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105313329404", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.415268, 39.869539 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264277059", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.409348, 39.868518 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264096362", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.407460, 39.873319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443670", "POINTID": "1102654019943", "FULLNAME": "Smith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.407495, 39.975040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435372", "POINTID": "1102654012812", "FULLNAME": "Grays Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.416105, 40.418091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437277", "POINTID": "1102653985955", "FULLNAME": "Kewanna", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.413334, 41.018649 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431655", "POINTID": "1102653970092", "FULLNAME": "Bruce Lake Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.414723, 41.069484 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433458", "POINTID": "1102653975489", "FULLNAME": "Delong", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.416392, 41.138373 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136299447", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.410899, 41.220821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449628", "POINTID": "1102653970813", "FULLNAME": "Burr Oak", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.415284, 41.256430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12249 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472555861", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.411228, 41.299200 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452578", "POINTID": "1102653974676", "FULLNAME": "Crumstown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.408066, 41.624211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451594", "POINTID": "1102654001272", "FULLNAME": "Valeene", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.397206, 38.438947 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12571 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451535", "POINTID": "1102654000200", "FULLNAME": "Syria", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.401653, 38.586166 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12569 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451853", "POINTID": "1102654014947", "FULLNAME": "Lewis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.401374, 38.600889 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451090", "POINTID": "1102654014147", "FULLNAME": "Irvin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.401653, 38.618943 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449719", "POINTID": "1102653996676", "FULLNAME": "Rivervale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.398043, 38.768941 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431762", "POINTID": "1102653970376", "FULLNAME": "Buddha", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.406655, 38.791996 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433098", "POINTID": "1102654010839", "FULLNAME": "Crawford Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.399156, 38.846441 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11014058778200", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.402138, 38.855623 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103922683905", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.406591, 38.872076 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262924251", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.406430, 38.874728 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451862", "POINTID": "1102653956000", "FULLNAME": "Blackwell Pond Campground", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.397769, 39.014215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450732", "POINTID": "1102654008873", "FULLNAME": "Burgoon Church", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.401937, 39.054493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110115001546", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.406618, 39.067143 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450942", "POINTID": "1102654012244", "FULLNAME": "Friendship Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.397769, 39.122270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269196881", "FULLNAME": "Hospital", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.405443, 39.426582 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434468", "POINTID": "1102653978788", "FULLNAME": "Fewell Rhoades", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.399437, 39.421436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267884302", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.405446, 39.435215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267788253", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.402160, 39.439333 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104698900753", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.399236, 39.464837 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104699601070", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.404472, 39.476134 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430496", "POINTID": "1102653950808", "FULLNAME": "Barnard Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.407452, 39.494377 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104699586835", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.396576, 39.489536 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267820928", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.406266, 39.595262 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110268070266", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.405717, 39.598335 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052359098", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.405019, 39.653953 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105082108509", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.405912, 39.678631 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110265526177", "FULLNAME": "Indiana Boys Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.402232, 39.696437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262940604", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.406642, 39.703410 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441219", "POINTID": "1102653995119", "FULLNAME": "Plainfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.399437, 39.704213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110265526185", "FULLNAME": "Franklin Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -86.407398, 39.707760 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264196289", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.402460, 39.722372 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264196364", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.403244, 39.719269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107064178383", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.405000, 39.730457 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046959640", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.401387, 39.732439 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046959642", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.405016, 39.735624 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046959638", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.401326, 39.734324 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046959639", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.402594, 39.732439 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046959640", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.401387, 39.732439 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264189140", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.403780, 39.746860 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435244", "POINTID": "1102654012670", "FULLNAME": "Gossett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.398882, 39.747823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439033", "POINTID": "1102654015978", "FULLNAME": "Merritt Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.403882, 39.754490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264213030", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.407535, 39.760835 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264212646", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.405253, 39.765433 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430358", "POINTID": "1102653966149", "FULLNAME": "Avon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.399714, 39.762822 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264099778", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.397525, 39.761697 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264188954", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.407213, 39.773151 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264170967", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.405097, 39.768585 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264185743", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.401015, 39.770523 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264186305", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.407473, 39.781733 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264212564", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.404308, 39.781397 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264211690", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.400958, 39.782409 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052106800", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.403638, 39.798672 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015488177445", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.406803, 39.812941 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264204727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.404343, 39.808806 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102607526733", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.397013, 39.822364 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102607483141", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.404740, 39.829051 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264187715", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.397026, 39.831759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093998", "POINTID": "1102654014989", "FULLNAME": "Lingeman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.402219, 39.840000 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264203356", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.397479, 39.840540 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438851", "POINTID": "1102654015702", "FULLNAME": "McDaniels Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.406049, 39.847434 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110265526184", "FULLNAME": "Eaton Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -86.398888, 39.845904 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104700084665", "FULLNAME": "Brownsburg Police Dept", "MTFCC": "K2194" }, "geometry": { "type": "Point", "coordinates": [ -86.396479, 39.843507 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264194481", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.405717, 39.856727 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264194604", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.400940, 39.857518 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264277115", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.405856, 39.866272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264096417", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.405692, 39.876030 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264096362", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.407460, 39.873319 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264096046", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.396506, 39.870865 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264202120", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.403638, 39.881377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264168415", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.396452, 39.886261 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093547", "POINTID": "1102654019969", "FULLNAME": "Smith-Shepherd Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.397775, 39.916665 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452413", "POINTID": "1102653963640", "FULLNAME": "White Lick Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.399995, 39.924764 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434422", "POINTID": "1102653978611", "FULLNAME": "Fayette", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.397227, 39.931155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443670", "POINTID": "1102654019943", "FULLNAME": "Smith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.407495, 39.975040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446669", "POINTID": "1102653975007", "FULLNAME": "Dale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.399995, 40.016706 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433665", "POINTID": "1102654011405", "FULLNAME": "Dowden Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.398327, 40.026984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12377 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433517", "POINTID": "1102654011299", "FULLNAME": "Dew Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.399161, 40.235869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440865", "POINTID": "1102654017622", "FULLNAME": "Paris Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.398053, 40.295035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431843", "POINTID": "1102654008894", "FULLNAME": "Burlington Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.397493, 40.481424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12332 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452303", "POINTID": "1102653957157", "FULLNAME": "Deer Creek Conservation Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.403885, 40.608369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12326 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442196", "POINTID": "1102654018654", "FULLNAME": "Rock Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.396385, 40.663092 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12319 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443374", "POINTID": "1102654019640", "FULLNAME": "Shideler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.404440, 40.721982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535354269", "FULLNAME": "Longcliff Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.405215, 40.741335 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435764", "POINTID": "1102654013164", "FULLNAME": "Harper Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.406663, 40.775315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438390", "POINTID": "1102653988770", "FULLNAME": "Lucerne", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.403332, 40.866426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12291 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435336", "POINTID": "1102653981368", "FULLNAME": "Grass Creek", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.404445, 40.947538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436694", "POINTID": "1102654014097", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.406111, 41.017538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443261", "POINTID": "1102654019515", "FULLNAME": "Shaffer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.401390, 41.021982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449740", "POINTID": "1102654001140", "FULLNAME": "Tyner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.402509, 41.409764 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136276819", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.402900, 41.411765 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449740", "POINTID": "1102654001140", "FULLNAME": "Tyner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.402509, 41.409764 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103776264534", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.402632, 41.631619 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12610 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451193", "POINTID": "1102653989022", "FULLNAME": "Magnolia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.393032, 38.249229 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451321", "POINTID": "1102653994601", "FULLNAME": "Pearsontown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.391648, 38.420892 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452520", "POINTID": "1102654015017", "FULLNAME": "Little Africa Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.393872, 38.493667 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12579 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450763", "POINTID": "1102653972308", "FULLNAME": "Chambersburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.392190, 38.518164 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12552 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437676", "POINTID": "1102653987413", "FULLNAME": "Lawrenceport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.387767, 38.751163 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114436947", "FULLNAME": "Bishop Roberts Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -86.393955, 38.762790 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114436947", "FULLNAME": "Bishop Roberts Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -86.393955, 38.762790 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444078", "POINTID": "1102654020259", "FULLNAME": "Starr Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.391364, 38.824814 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108881469063", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.386013, 38.878499 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451041", "POINTID": "1102654013589", "FULLNAME": "Hillenburg Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.386657, 38.993382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051949760", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.386292, 39.148848 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430448", "POINTID": "1102653950731", "FULLNAME": "Bald Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.387494, 39.269491 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444586", "POINTID": "1102654020791", "FULLNAME": "Taylor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.391659, 39.335602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110268070846", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.392917, 39.413815 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047041640", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.389503, 39.414221 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446259", "POINTID": "1102654003202", "FULLNAME": "Wolff", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.395269, 39.433102 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047477054", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.386869, 39.434213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446283", "POINTID": "1102654003221", "FULLNAME": "Woodcrest", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.394714, 39.437544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452357", "POINTID": "1102653960416", "FULLNAME": "Martinsville Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.387494, 39.450879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104699610096", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.392362, 39.468812 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104699610309", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.389390, 39.466719 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104699609344", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.395318, 39.474672 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104699609922", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.393373, 39.470924 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104692585032", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.387427, 39.474084 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104699600583", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.394567, 39.484307 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104699595990", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.390696, 39.480895 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267821935", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.389401, 39.478467 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104699586835", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.396576, 39.489536 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104699586834", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.395446, 39.489505 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104699586538", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.390361, 39.488985 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104699600489", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.389846, 39.487052 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292711", "FULLNAME": "Milhon Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.388440, 39.506421 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449636", "POINTID": "1102653972180", "FULLNAME": "Centerton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.394993, 39.515046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452327", "POINTID": "1102653958232", "FULLNAME": "Goethe Link Observatory", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.395269, 39.549489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292679", "FULLNAME": "Hopkins Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.390546, 39.589489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047482039", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.396232, 39.608023 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093830", "POINTID": "1102654018272", "FULLNAME": "Ramsey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.395554, 39.638610 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264078508", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385941, 39.640013 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105082108299", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.386295, 39.673224 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105082108943", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.393386, 39.677951 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105082108299", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.386295, 39.673224 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264189542", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.388880, 39.688572 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264189512", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.387625, 39.685989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093829", "POINTID": "1102654015417", "FULLNAME": "Maple Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.395275, 39.698889 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264190283", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.391900, 39.697894 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110265526187", "FULLNAME": "Swinford Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -86.391791, 39.692446 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264214864", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.389275, 39.691527 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264189876", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.395575, 39.701029 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472484512", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.390321, 39.699708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292357", "FULLNAME": "Psi Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.385546, 39.711155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262934050", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.396015, 39.720967 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105633024573", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.388196, 39.723938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262933783", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.394062, 39.729269 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105633024574", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.389607, 39.725203 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105633024573", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.388196, 39.723938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264093591", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385589, 39.749399 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264196165", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.387469, 39.752238 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264093591", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385589, 39.749399 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264190169", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.394430, 39.766152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264211780", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.393293, 39.766538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264171570", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.392705, 39.783268 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264081833", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.393832, 39.776936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264076377", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.391654, 39.788747 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052122602", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.388950, 39.797903 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489722325", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385431, 39.799191 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264109125", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.392861, 39.813207 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102608960691", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.388939, 39.815438 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264256947", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385477, 39.809632 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102607144478", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385967, 39.824752 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102607148870", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.395304, 39.827675 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104700084634", "FULLNAME": "Brownsburg High School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.388344, 39.830068 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104486527734", "MTFCC": "C3071" }, "geometry": { "type": "Point", "coordinates": [ -86.387786, 39.826585 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264170489", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.394626, 39.834851 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264226837", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385984, 39.836824 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102607144706", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385632, 39.833809 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104700084679", "FULLNAME": "Brownsburg Town Hall", "MTFCC": "K2196" }, "geometry": { "type": "Point", "coordinates": [ -86.396144, 39.844222 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102607141458", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.389334, 39.849605 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264112803", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385463, 39.849683 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102604288755", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.394800, 39.853700 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015486755118", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.387443, 39.853645 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102607143374", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.388371, 39.867466 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264096046", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.396506, 39.870865 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264095957", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.395556, 39.872026 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264095757", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.394105, 39.869239 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102607143335", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.390822, 39.869829 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102607143374", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.388371, 39.867466 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264084041", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.394886, 39.884306 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046973633", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.390342, 39.881188 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264168415", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.396452, 39.886261 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046973635", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.387566, 39.888114 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264123250", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.386598, 39.901854 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433537", "POINTID": "1102654011310", "FULLNAME": "Dickerson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.394438, 39.924486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431430", "POINTID": "1102653969139", "FULLNAME": "Boyleston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.394717, 40.286423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12367 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445972", "POINTID": "1102654021918", "FULLNAME": "Whiteman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.392217, 40.315868 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12366 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439080", "POINTID": "1102653990454", "FULLNAME": "Michigantown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.392804, 40.326420 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12363 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437682", "POINTID": "1102654014869", "FULLNAME": "Layman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.396104, 40.353367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12358 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432080", "POINTID": "1102654009235", "FULLNAME": "Campbell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.390828, 40.395590 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449695", "POINTID": "1102653990512", "FULLNAME": "Middlefork", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.392488, 40.415587 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431841", "POINTID": "1102653970670", "FULLNAME": "Burlington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.394714, 40.480312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431841", "POINTID": "1102653970670", "FULLNAME": "Burlington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.394714, 40.480312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432178", "POINTID": "1102653971647", "FULLNAME": "Carrollton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.391938, 40.517812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12339 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443292", "POINTID": "1102653998171", "FULLNAME": "Sharon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.391383, 40.553647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12337 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445896", "POINTID": "1102654002724", "FULLNAME": "Wheeling", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.391662, 40.566146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445143", "POINTID": "1102654021258", "FULLNAME": "United Brethren Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.392772, 40.584202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12332 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436453", "POINTID": "1102654013797", "FULLNAME": "Hopewell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.387217, 40.611981 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12331 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449647", "POINTID": "1102653975396", "FULLNAME": "Deer Creek", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.391107, 40.614203 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12326 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442196", "POINTID": "1102654018654", "FULLNAME": "Rock Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.396385, 40.663092 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433785", "POINTID": "1102653976425", "FULLNAME": "Dunkirk", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.393609, 40.756427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535060018", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.386088, 40.775222 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12303 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442529", "POINTID": "1102654018895", "FULLNAME": "Saint Elizabeth Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.394443, 40.851705 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12290 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442474", "POINTID": "1102654018841", "FULLNAME": "Saint Anns Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.385833, 40.960316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439379", "POINTID": "1102654016186", "FULLNAME": "Moon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.395001, 41.085038 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436698", "POINTID": "1102654014103", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.388336, 41.124484 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436083", "POINTID": "1102653983337", "FULLNAME": "Hibbard", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.386949, 41.253373 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735278894", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.389301, 41.648559 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015747762216", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.387842, 41.710432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12618 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450931", "POINTID": "1102653979887", "FULLNAME": "Fredonia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.383033, 38.178118 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433254", "POINTID": "1102653974796", "FULLNAME": "Curby", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.377199, 38.287562 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450827", "POINTID": "1102654011108", "FULLNAME": "Danners Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.378318, 38.489779 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12574 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451819", "POINTID": "1102653999347", "FULLNAME": "Stampers Creek", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.383317, 38.558389 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450894", "POINTID": "1102653977928", "FULLNAME": "Erie", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.381378, 38.882552 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450894", "POINTID": "1102653977928", "FULLNAME": "Erie", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.381378, 38.882552 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12531 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451026", "POINTID": "1102653983135", "FULLNAME": "Heltonville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.375544, 38.927829 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451572", "POINTID": "1102654020953", "FULLNAME": "Todd Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.378047, 39.013938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051949759", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385131, 39.149826 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051949713", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.379412, 39.151881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047041566", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.375727, 39.416515 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269196880", "FULLNAME": "Nebo Park Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.374598, 39.411925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047477324", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.377518, 39.426839 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047477340", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.378919, 39.430873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104699589201", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.379063, 39.477152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267821904", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385533, 39.481158 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104699589516", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.382832, 39.479152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430861", "POINTID": "1102653967838", "FULLNAME": "Bethany", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.375826, 39.532545 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103859786484", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.375011, 39.546211 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103859819949", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.374780, 39.541775 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431575", "POINTID": "1102653969841", "FULLNAME": "Brookmoor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.374713, 39.567546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104258975637", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.378315, 39.584487 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047482314", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.380769, 39.622150 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269196883", "FULLNAME": "First Baptist Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -86.375405, 39.621348 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269196890", "FULLNAME": "Christian Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -86.374485, 39.619380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267859530", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.381885, 39.627519 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093831", "POINTID": "1102654021874", "FULLNAME": "White Lick Friends Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.384720, 39.637499 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264102198", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.379447, 39.647768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264175076", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.376507, 39.662985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105082107572", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.381292, 39.673304 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105082108374", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.378409, 39.671444 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105082108398", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.376202, 39.669109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264215481", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.382620, 39.678853 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105082107570", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.376757, 39.674060 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105082107572", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.381292, 39.673304 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264189451", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.381711, 39.689432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264214463", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.384203, 39.694625 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264082153", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.377269, 39.690675 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264190215", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.381088, 39.701285 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264190446", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.378224, 39.702337 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264189662", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.378551, 39.698575 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292357", "FULLNAME": "Psi Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.385546, 39.711155 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264190100", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.377500, 39.713688 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718634723", "FULLNAME": "Carpenter Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385131, 39.724883 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316569111", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.375110, 39.725801 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264093591", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385589, 39.749399 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264093591", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385589, 39.749399 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264093559", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385192, 39.750234 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264099744", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.382132, 39.765923 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262927745", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.379350, 39.765868 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264152848", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.384213, 39.771920 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052336740", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.375965, 39.783277 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052336741", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.375947, 39.781529 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262928544", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.374624, 39.775536 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264178824", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.383165, 39.789829 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052336740", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.375965, 39.783277 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489722325", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385431, 39.799191 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489272711", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.376456, 39.793841 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264142101", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.384699, 39.807667 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264117160", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.384720, 39.812410 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264171612", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385163, 39.823986 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264102027", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.380107, 39.820457 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264160547", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.376757, 39.821233 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102607144706", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385632, 39.833809 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718619985", "FULLNAME": "Candlewood Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.384634, 39.832452 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102607141638", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.383092, 39.842358 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102607144706", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385632, 39.833809 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264203504", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.380311, 39.840624 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264112803", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385463, 39.849683 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102607141638", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.383092, 39.842358 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264161373", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.375169, 39.857374 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264277560", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.374909, 39.853219 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264074271", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.384929, 39.865167 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264109801", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.378342, 39.864876 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264162651", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.374772, 39.859929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264193977", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385278, 39.874729 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046973634", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.382888, 39.882371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046973636", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.384758, 39.887336 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046973637", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.381713, 39.884343 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264202110", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.382387, 39.915762 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264168436", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.382306, 39.910942 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436533", "POINTID": "1102654013858", "FULLNAME": "Howard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.381105, 39.930875 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066056300", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.384857, 39.959740 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434073", "POINTID": "1102653977398", "FULLNAME": "Elizaville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.375751, 40.126733 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440576", "POINTID": "1102654017281", "FULLNAME": "Old Liberty Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.374995, 40.360869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443540", "POINTID": "1102654019846", "FULLNAME": "Sims Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.380270, 40.409201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535354272", "FULLNAME": "Fairview Mid Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.376467, 40.740305 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535060011", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.384900, 40.774771 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12309 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433926", "POINTID": "1102654011505", "FULLNAME": "East Sand Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.384441, 40.803650 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12290 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431409", "POINTID": "1102654008190", "FULLNAME": "Bowman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.382778, 40.960316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445497", "POINTID": "1102654021548", "FULLNAME": "Washington Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.381392, 41.190873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438747", "POINTID": "1102653989776", "FULLNAME": "Maxinkuckee", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.381392, 41.208374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12251 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438857", "POINTID": "1102654015707", "FULLNAME": "McElrath Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.376950, 41.278097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444620", "POINTID": "1102654000407", "FULLNAME": "Teegarden", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.377508, 41.465045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735279108", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.377344, 41.646935 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102978795725", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.380185, 41.654231 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110345010765", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.378135, 41.652064 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735272187", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.380278, 41.656678 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452833", "POINTID": "1102654002524", "FULLNAME": "Westfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.380287, 41.675600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344762804", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.381260, 41.684383 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259634348", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.376891, 41.684251 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452674", "POINTID": "1102653988816", "FULLNAME": "Lydick", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.380010, 41.693378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110345010685", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385648, 41.711279 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452563", "POINTID": "1102653972272", "FULLNAME": "Chain-O-Lakes", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.380010, 41.708380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735916609", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.381620, 41.718361 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103731296660", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.382743, 41.741609 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103731296739", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.375110, 41.741593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12622 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432118", "POINTID": "1102653971431", "FULLNAME": "Cape Sandy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.370810, 38.150897 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430287", "POINTID": "1102653965700", "FULLNAME": "Artist Pt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.370531, 38.160896 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437717", "POINTID": "1102654014904", "FULLNAME": "Leavenworth Memorial Garden", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.368310, 38.207285 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451582", "POINTID": "1102654000983", "FULLNAME": "Trotter Crossing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.365540, 38.511444 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12574 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451194", "POINTID": "1102653989045", "FULLNAME": "Mahan Crossing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.364429, 38.557277 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451195", "POINTID": "1102653953303", "FULLNAME": "Mahan Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.363319, 38.567277 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12571 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451371", "POINTID": "1102653995798", "FULLNAME": "Pumpkin Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.364429, 38.589499 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12561 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437763", "POINTID": "1102653987557", "FULLNAME": "Leipsic", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.369708, 38.671164 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444223", "POINTID": "1102653999635", "FULLNAME": "Stonington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.367487, 38.731720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443366", "POINTID": "1102654019625", "FULLNAME": "Sherril Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.369142, 38.841947 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12493 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577501942", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.370352, 39.251244 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441390", "POINTID": "1102653995319", "FULLNAME": "Pt Idalawn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.368882, 39.260603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452017", "POINTID": "1102653967073", "FULLNAME": "Bear Wallow", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.368882, 39.323656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052077722", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.364022, 39.398184 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047041409", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.365701, 39.410884 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269196880", "FULLNAME": "Nebo Park Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.374598, 39.411925 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047041567", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.373788, 39.415920 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047041557", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.369217, 39.414127 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047041409", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.365701, 39.410884 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444169", "POINTID": "1102653999529", "FULLNAME": "Stines Mill Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.372771, 39.475879 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446112", "POINTID": "1102654003003", "FULLNAME": "Willowbrook Estates", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.364993, 39.477546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431908", "POINTID": "1102654009026", "FULLNAME": "Butterfield Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.365824, 39.513101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431572", "POINTID": "1102653969812", "FULLNAME": "Brooklyn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.369158, 39.539212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103855752346", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.370601, 39.550722 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267801324", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.367425, 39.547324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431574", "POINTID": "1102654008527", "FULLNAME": "Brooklyn Rest Park", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.372213, 39.558378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431575", "POINTID": "1102653969841", "FULLNAME": "Brookmoor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.374713, 39.567546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267815762", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.373779, 39.595609 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047042392", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.364665, 39.595741 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267883645", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.365569, 39.601741 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439412", "POINTID": "1102653991413", "FULLNAME": "Mooresville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.374158, 39.612823 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269196889", "FULLNAME": "Cemetery", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.365545, 39.611873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047482427", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.372543, 39.621355 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267852008", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.371290, 39.614873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269196888", "FULLNAME": "Nazarene Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -86.374530, 39.623850 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269196867", "FULLNAME": "Free Methodist Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -86.372771, 39.629368 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267800342", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.369847, 39.626786 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047692872", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.368882, 39.623229 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316569222", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.372377, 39.646830 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316569220", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.372111, 39.649656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262936195", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.363625, 39.708615 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052114910", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.370542, 39.738247 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011919391055", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.372184, 39.766175 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264093704", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.373576, 39.769032 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011919391055", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.372184, 39.766175 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052338519", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.374699, 39.779517 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262928544", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.374624, 39.775536 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052336750", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.372342, 39.781972 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718816141", "FULLNAME": "Kitner Ave", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.372379, 39.777334 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052071166", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.369375, 39.790478 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052269014", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.370684, 39.797532 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052269013", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.368088, 39.795278 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264160537", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.373039, 39.821400 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264160366", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.370813, 39.817603 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264100945", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.368399, 39.817970 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094002", "POINTID": "1102654021450", "FULLNAME": "Walker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.366385, 39.848610 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264114264", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.373155, 39.857983 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046698121", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.367763, 39.852020 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440585", "POINTID": "1102654017301", "FULLNAME": "Old Prophet Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.369437, 40.422534 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12320 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292075", "FULLNAME": "Logansport/cass County Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.372690, 40.711274 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439581", "POINTID": "1102654016405", "FULLNAME": "Mount Hope Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.366106, 40.765315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12311 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436485", "POINTID": "1102654013824", "FULLNAME": "Horney Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.368329, 40.786705 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12307 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446702", "POINTID": "1102654001471", "FULLNAME": "Verona", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.373608, 40.818092 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437704", "POINTID": "1102653987471", "FULLNAME": "Leases Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.374163, 40.866426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12289 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292182", "FULLNAME": "Dague Strip", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.370665, 40.963914 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735278458", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.369955, 41.642313 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047304830", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.364858, 41.663310 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735275918", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.363941, 41.656902 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452799", "POINTID": "1102653962609", "FULLNAME": "South Bend Motor Speedway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.364453, 41.668380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452798", "POINTID": "1102653962599", "FULLNAME": "South Bend Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.365929, 41.682301 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103731690699", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.368469, 41.721378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110345009972", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.367216, 41.725412 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103731689854", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.366784, 41.721980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103731296789", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.372929, 41.738092 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103731296860", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.373712, 41.743762 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109097036108", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.366213, 41.739855 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12612 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434272", "POINTID": "1102654011758", "FULLNAME": "Everton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.359143, 38.235340 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441143", "POINTID": "1102653953936", "FULLNAME": "Pilot Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.353035, 38.306172 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445923", "POINTID": "1102654021844", "FULLNAME": "White Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.356924, 38.339782 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451195", "POINTID": "1102653953303", "FULLNAME": "Mahan Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.363319, 38.567277 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450884", "POINTID": "1102654011557", "FULLNAME": "Edward Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.358319, 38.624222 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12544 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441169", "POINTID": "1102653995054", "FULLNAME": "Pinhook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.356377, 38.815331 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451820", "POINTID": "1102654011873", "FULLNAME": "Faubion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.360267, 38.945329 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451228", "POINTID": "1102654016119", "FULLNAME": "Mitchell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.359711, 38.993662 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451228", "POINTID": "1102654016119", "FULLNAME": "Mitchell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.359711, 38.993662 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438476", "POINTID": "1102653989034", "FULLNAME": "Mahalasville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.362769, 39.360324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267800482", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.359475, 39.383466 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267800478", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.354545, 39.384665 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12477 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267817214", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.361347, 39.392774 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267817196", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.359215, 39.396455 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259019520", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.357405, 39.394735 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446066", "POINTID": "1102654022030", "FULLNAME": "Williams Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.355270, 39.486712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431573", "POINTID": "1102654008521", "FULLNAME": "Brooklyn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.361103, 39.536434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103855798715", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.356350, 39.546633 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267787806", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.362892, 39.596783 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047042450", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.362359, 39.589156 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110268094870", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.353851, 39.596423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269196885", "FULLNAME": "Mooresville Consolidated School Corporation", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.361296, 39.605415 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267794972", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.352823, 39.605461 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267859428", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.352864, 39.608439 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262936195", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.363625, 39.708615 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103941123034", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.356557, 39.721085 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046850737", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.359148, 39.729792 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046850691", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.357566, 39.731665 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446832", "POINTID": "1102653967992", "FULLNAME": "Big Four Yard", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.358325, 39.761156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093857", "POINTID": "1102654008564", "FULLNAME": "Brown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.353330, 39.816388 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319730277", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.354162, 39.811794 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319730276", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.352456, 39.810162 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292325", "FULLNAME": "Fuller Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.361771, 39.901418 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292325", "FULLNAME": "Fuller Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.361771, 39.901418 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437918", "POINTID": "1102654014983", "FULLNAME": "Lincoln Memory Gardens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.352491, 39.941985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012812698140", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.354870, 39.959139 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012812621915", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.352995, 39.963304 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319764461", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.353556, 39.980596 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437357", "POINTID": "1102653986187", "FULLNAME": "Kirklin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.360548, 40.193369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440433", "POINTID": "1102654017072", "FULLNAME": "Oak Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.357493, 40.214479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445244", "POINTID": "1102654021323", "FULLNAME": "Veneman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.358604, 40.360035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441063", "POINTID": "1102654017810", "FULLNAME": "Petes Run Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.356383, 40.490869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12342 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439512", "POINTID": "1102654016311", "FULLNAME": "Mound Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.353604, 40.526424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12339 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431604", "POINTID": "1102654008577", "FULLNAME": "Brown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.358327, 40.550592 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438232", "POINTID": "1102653988445", "FULLNAME": "Logansport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.356662, 40.754482 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292045", "FULLNAME": "Memorial Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.361106, 40.763609 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442427", "POINTID": "1102653997283", "FULLNAME": "Rutland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.357225, 41.244486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449739", "POINTID": "1102654001123", "FULLNAME": "Twin Lakes", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.357225, 41.304209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452742", "POINTID": "1102654018048", "FULLNAME": "Porter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.352786, 41.549212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452748", "POINTID": "1102653954185", "FULLNAME": "Reeves Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.353341, 41.569766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735275907", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.359465, 41.662479 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103736410496", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.357933, 41.661996 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8523, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047397455", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.362455, 41.721422 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12621 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449842", "POINTID": "1102653997809", "FULLNAME": "Schooler Point Landing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.341553, 38.157870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12616 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437716", "POINTID": "1102653987499", "FULLNAME": "Leavenworth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.344141, 38.199785 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12610 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452257", "POINTID": "1102653971525", "FULLNAME": "Carefree", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.351367, 38.251729 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449711", "POINTID": "1102653994977", "FULLNAME": "Pilot Knob", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.349701, 38.282562 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451197", "POINTID": "1102653989381", "FULLNAME": "Marengo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.343591, 38.369227 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12579 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450803", "POINTID": "1102654010594", "FULLNAME": "Copelin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.344428, 38.517001 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444956", "POINTID": "1102654001026", "FULLNAME": "Tunnelton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.342765, 38.768665 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114280285", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.342610, 38.778734 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451647", "POINTID": "1102654003457", "FULLNAME": "Yellowstone", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.342489, 38.998938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430784", "POINTID": "1102653967535", "FULLNAME": "Belmont", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.347212, 39.151991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436142", "POINTID": "1102653952638", "FULLNAME": "High King Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.344157, 39.174769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292020", "FULLNAME": "Engdahl Farm (Moonstraka) Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.347212, 39.288656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445573", "POINTID": "1102654002051", "FULLNAME": "Waycross", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.344157, 39.303657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12477 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267817312", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.342537, 39.393767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267801270", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.351799, 39.397840 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267817312", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.342537, 39.393767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439963", "POINTID": "1102653953696", "FULLNAME": "Mt Nebo", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.341657, 39.406435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267813889", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.348197, 39.605794 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267796947", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.351836, 39.603781 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267787120", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.346990, 39.604244 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110268069982", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.350940, 39.608682 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267855495", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.347778, 39.621882 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267856027", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.347639, 39.617805 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267798511", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.341537, 39.617948 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047692941", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.347151, 39.627001 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052288658", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.344425, 39.749706 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052288672", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.341464, 39.749628 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316581190", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.346577, 39.765857 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316581176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.352062, 39.774846 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316581175", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.350659, 39.774479 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316581185", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.348677, 39.770209 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316581188", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.342736, 39.769908 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316581174", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.351469, 39.777713 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316581183", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.345683, 39.777295 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489668394", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.351005, 39.792174 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094001", "POINTID": "1102654021122", "FULLNAME": "Turpin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.348610, 39.805833 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319730276", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.352456, 39.810162 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432643", "POINTID": "1102653973082", "FULLNAME": "Clermont Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.344157, 39.826711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292339", "FULLNAME": "Newby Landing", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.347328, 39.840585 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319727641", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.342237, 39.848664 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015682270632", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.349680, 39.857312 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319727744", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.343682, 39.852459 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093543", "POINTID": "1102654006951", "FULLNAME": "Ballard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.349720, 39.864166 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319769924", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.349235, 39.929830 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319769936", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.344576, 39.929009 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437918", "POINTID": "1102654014983", "FULLNAME": "Lincoln Memory Gardens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.352491, 39.941985 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066057068", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.346166, 39.941629 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066057066", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.343878, 39.938972 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016954859459", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.349025, 39.959916 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437083", "POINTID": "1102654014295", "FULLNAME": "Jones Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.345579, 39.963929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319764462", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.348805, 39.975870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045756077", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.350777, 39.994190 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445978", "POINTID": "1102654002825", "FULLNAME": "Whitestown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.345825, 39.997262 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434912", "POINTID": "1102653980181", "FULLNAME": "Gadsden", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.345825, 40.047261 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437333", "POINTID": "1102654014557", "FULLNAME": "Kings Corner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.341660, 40.258368 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445063", "POINTID": "1102654021194", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.347494, 40.410312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12339 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446708", "POINTID": "1102653995409", "FULLNAME": "Poplar Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.347215, 40.555591 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441102", "POINTID": "1102654017835", "FULLNAME": "Pickett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.342215, 40.552536 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12338 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446708", "POINTID": "1102653995409", "FULLNAME": "Poplar Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.347215, 40.555591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12337 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446410", "POINTID": "1102654003536", "FULLNAME": "Young America", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.346660, 40.568646 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439433", "POINTID": "1102653953597", "FULLNAME": "Morgan Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.344718, 40.726427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535354273", "FULLNAME": "Dog Obedience Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.347952, 40.750878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446130", "POINTID": "1102654022053", "FULLNAME": "Wilson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.350616, 40.763897 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535068588", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.351061, 40.766617 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446130", "POINTID": "1102654022053", "FULLNAME": "Wilson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.350616, 40.763897 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12310 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535076658", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.347770, 40.791717 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12295 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441850", "POINTID": "1102654018356", "FULLNAME": "Reed Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.349165, 40.916983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292667", "FULLNAME": "Ddt Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.345962, 41.205178 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136309165", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.342097, 41.335344 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136304697", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.343996, 41.339555 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452827", "POINTID": "1102653955255", "FULLNAME": "Vargo Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.343897, 41.561990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735276378", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.348449, 41.662024 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452635", "POINTID": "1102654013950", "FULLNAME": "Hungarian Sacred Heart Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.349723, 41.671990 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452771", "POINTID": "1102654019042", "FULLNAME": "Saint Josephs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.349176, 41.668656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047305118", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.344055, 41.726393 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047305115", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.341507, 41.728512 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047396932", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.343495, 41.738595 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047397278", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.345466, 41.734203 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047396873", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.346399, 41.743534 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047396932", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.343495, 41.738595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047396790", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.345796, 41.749277 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12621 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449842", "POINTID": "1102653997809", "FULLNAME": "Schooler Point Landing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.341553, 38.157870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12617 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440575", "POINTID": "1102654017275", "FULLNAME": "Old Leavenworth Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.335531, 38.192007 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12574 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451224", "POINTID": "1102653990733", "FULLNAME": "Millersburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.335539, 38.557277 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450713", "POINTID": "1102653969749", "FULLNAME": "Bromer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.335818, 38.593667 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451581", "POINTID": "1102654021019", "FULLNAME": "Trimble Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.331650, 38.618388 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434802", "POINTID": "1102654012215", "FULLNAME": "Freed Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.337763, 38.648666 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433593", "POINTID": "1102654011352", "FULLNAME": "Dodd Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.335542, 38.779219 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942350209", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.330679, 38.940055 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431740", "POINTID": "1102653951231", "FULLNAME": "Bucker Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.338047, 39.126159 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12493 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439974", "POINTID": "1102653992191", "FULLNAME": "Needmore", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.339713, 39.251157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444872", "POINTID": "1102654000952", "FULLNAME": "Trevlac", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.336937, 39.265601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439963", "POINTID": "1102653953696", "FULLNAME": "Mt Nebo", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.341657, 39.406435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104698905580", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.340155, 39.492527 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434475", "POINTID": "1102653978829", "FULLNAME": "Fields", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.333324, 39.546158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047028626", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.341145, 39.612929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046992244", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.340330, 39.619196 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434871", "POINTID": "1102653980076", "FULLNAME": "Friendswood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.332768, 39.646434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093826", "POINTID": "1102654011788", "FULLNAME": "Fairfield Friends Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.335832, 39.661110 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046720303", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.338589, 39.721922 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443558", "POINTID": "1102653998552", "FULLNAME": "Six Points", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.335824, 39.726156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052288465", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.339420, 39.752226 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052095024", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.331991, 39.755758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046968849", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.336306, 39.764527 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046968834", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.334708, 39.765043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316581186", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.338696, 39.770958 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262928858", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.333919, 39.770420 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094109", "POINTID": "1102654019693", "FULLNAME": "Shiloh Methodist Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.335832, 39.775000 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296847765", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.339914, 39.787178 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296847907", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.335201, 39.790260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102177013505", "FULLNAME": "Majestic Prince Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.337897, 39.796170 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452341", "POINTID": "1102653959387", "FULLNAME": "Indianapolis Raceway Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.340823, 39.812543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319727200", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.339077, 39.848979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319727642", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.332087, 39.854738 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264208080", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.338444, 39.890962 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264217417", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.331465, 39.892571 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093545", "POINTID": "1102654015363", "FULLNAME": "Macedonia Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.339163, 39.898889 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264208744", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.340501, 39.894253 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093546", "POINTID": "1102654015523", "FULLNAME": "Marvel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.330829, 39.895000 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442375", "POINTID": "1102653997153", "FULLNAME": "Royalton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.338326, 39.926985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066059296", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.333396, 39.940109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066059298", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.333147, 39.945030 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431284", "POINTID": "1102654007890", "FULLNAME": "Bogan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.338050, 40.190592 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437333", "POINTID": "1102654014557", "FULLNAME": "Kings Corner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.341660, 40.258368 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449669", "POINTID": "1102653983690", "FULLNAME": "Hillisburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.339160, 40.286423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12366 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441375", "POINTID": "1102654017981", "FULLNAME": "Plummer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.340271, 40.323091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12360 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434646", "POINTID": "1102653979360", "FULLNAME": "Forest", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.332696, 40.373874 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12330 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441514", "POINTID": "1102653995571", "FULLNAME": "Poundstone Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.336105, 40.626703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12317 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444534", "POINTID": "1102654020705", "FULLNAME": "Taber Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.340829, 40.732259 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535069215", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.335156, 40.753879 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535354274", "FULLNAME": "Logansport High School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.332739, 40.750006 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535076141", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.341303, 40.765561 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12296 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434594", "POINTID": "1102653979198", "FULLNAME": "Fletcher", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.332774, 40.911982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12291 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449693", "POINTID": "1102653989577", "FULLNAME": "Marshtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.338610, 40.948928 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12286 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292219", "FULLNAME": "Friedrich Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.340389, 40.993079 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328767216", "FULLNAME": "South Germany Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.335706, 41.123748 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136278133", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.340059, 41.338015 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472553650", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.333790, 41.339048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452596", "POINTID": "1102654011769", "FULLNAME": "Fair Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.332785, 41.487544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735281563", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.339227, 41.589124 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452810", "POINTID": "1102654020593", "FULLNAME": "Sumption Prairie Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.330564, 41.608656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504160858", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.331913, 41.695381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047305115", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.341507, 41.728512 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047397440", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.336827, 41.724931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047396791", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.341220, 41.746266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434804", "POINTID": "1102654012216", "FULLNAME": "Freedom Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.326650, 38.661443 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444551", "POINTID": "1102654020721", "FULLNAME": "Talbott Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.327763, 38.717277 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431325", "POINTID": "1102653968855", "FULLNAME": "Bono", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.321329, 38.731406 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942350209", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.330679, 38.940055 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451550", "POINTID": "1102654020835", "FULLNAME": "Terrill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.320267, 39.054772 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437588", "POINTID": "1102653987123", "FULLNAME": "Lanam", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.327493, 39.233658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443175", "POINTID": "1102654019445", "FULLNAME": "Scroggins Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.329990, 39.443934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504481106", "FULLNAME": "Twelve Oaks Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.327047, 39.450864 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434276", "POINTID": "1102653978158", "FULLNAME": "Exchange", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.322211, 39.501712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103689582483", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.325130, 39.565808 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103689583160", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.322863, 39.565865 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047042831", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.324322, 39.576284 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051938246", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.324277, 39.587102 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047028518", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.329746, 39.613214 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047028562", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.324003, 39.612991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047028546", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.324314, 39.614832 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047028561", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.319368, 39.615452 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443488", "POINTID": "1102654019804", "FULLNAME": "Silon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.323601, 39.628656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066772871", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.322721, 39.637606 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066753424", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.323214, 39.647774 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066784411", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.322217, 39.642799 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066752528", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.323499, 39.648518 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066758166", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.323906, 39.663576 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096261", "POINTID": "1102654009603", "FULLNAME": "Center Friends Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.325832, 39.697500 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096259", "POINTID": "1102654008407", "FULLNAME": "Bridgeport Friends Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.326111, 39.733895 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104976452908", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.323735, 39.747590 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052095005", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.330223, 39.755754 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052094927", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.322804, 39.755971 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052094919", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.319548, 39.757006 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052094865", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.325701, 39.759181 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052094841", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.325999, 39.757808 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052090771", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.325524, 39.768781 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969368", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.323102, 39.780929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072637685", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.327361, 39.790115 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445866", "POINTID": "1102654002640", "FULLNAME": "Westwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.326379, 39.786710 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977469487", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.320865, 39.788868 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102178599890", "FULLNAME": "Whirlaway Ct Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.328681, 39.798785 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446274", "POINTID": "1102654022167", "FULLNAME": "Wood Haven Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.323601, 39.792543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072637678", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.321039, 39.804829 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432641", "POINTID": "1102653973066", "FULLNAME": "Clermont", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.322490, 39.809766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977546306", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.325875, 39.822350 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977546097", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.324271, 39.826013 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977545875", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.320656, 39.825320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977553642", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.325696, 39.838567 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107274744214", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.322863, 39.841588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047019546", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.330247, 39.855467 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093544", "POINTID": "1102654011736", "FULLNAME": "Evans Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.326664, 39.871944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047019367", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.327270, 39.881309 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047019368", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.327063, 39.877713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264217194", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.328622, 39.890307 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051975839", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.324577, 39.918148 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106049827739", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.323491, 39.911228 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066060533", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.327037, 39.925309 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051975839", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.324577, 39.918148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066060536", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.329118, 39.927960 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016954954402", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.321050, 39.950707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016954956429", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.327667, 39.959643 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016954954120", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.324529, 39.959470 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016954956428", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.326766, 39.960581 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441213", "POINTID": "1102654017887", "FULLNAME": "Pitzer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.320546, 39.963650 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444252", "POINTID": "1102654020480", "FULLNAME": "Stowers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.323603, 40.199759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443278", "POINTID": "1102653998154", "FULLNAME": "Shanghai", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.328327, 40.446147 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443862", "POINTID": "1102654020062", "FULLNAME": "South Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.328603, 40.475591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436430", "POINTID": "1102654013780", "FULLNAME": "Hoover-Snider Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.327493, 40.603647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12328 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439184", "POINTID": "1102654016091", "FULLNAME": "Miller Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.322217, 40.640594 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535354275", "FULLNAME": "Lincoln Mid Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.328126, 40.752489 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535074619", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.323424, 40.755421 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535354331", "FULLNAME": "Spencer Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -86.321479, 40.763115 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535074619", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.323424, 40.755421 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12303 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439641", "POINTID": "1102653991782", "FULLNAME": "Mt Pleasant", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.324719, 40.849205 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12292 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443646", "POINTID": "1102654019913", "FULLNAME": "Smalley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.328053, 40.945871 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328438280", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.320881, 41.115629 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328767215", "FULLNAME": "North Germany Cem (Private)", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.322807, 41.128044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12249 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136312525", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.329601, 41.295549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12243 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442736", "POINTID": "1102654019108", "FULLNAME": "Saint Michaels Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.328059, 41.347820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015484998223", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.323440, 41.377579 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452732", "POINTID": "1102653995027", "FULLNAME": "Pine Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.325561, 41.528100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452810", "POINTID": "1102654020593", "FULLNAME": "Sumption Prairie Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.330564, 41.608656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732140473", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.326919, 41.629927 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472683573", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.323048, 41.662952 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504161539", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -86.322412, 41.694704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102968966089", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.322616, 41.743458 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436299", "POINTID": "1102653983989", "FULLNAME": "Hogtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.317756, 38.358391 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451385", "POINTID": "1102653996265", "FULLNAME": "Rego", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.317759, 38.485057 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451655", "POINTID": "1102654003524", "FULLNAME": "Young", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.316656, 39.073938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01946198", "POINTID": "1102654014763", "FULLNAME": "Lanam Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.313880, 39.232270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438563", "POINTID": "1102653953341", "FULLNAME": "Maple Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.317770, 39.233103 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01946198", "POINTID": "1102654014763", "FULLNAME": "Lanam Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.313880, 39.232270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432923", "POINTID": "1102653951458", "FULLNAME": "Cooks Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.314436, 39.330046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052074954", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.319266, 39.430517 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432951", "POINTID": "1102653973834", "FULLNAME": "Cope", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.318923, 39.450351 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047772567", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.308712, 39.512277 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433120", "POINTID": "1102653974417", "FULLNAME": "Crestview Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.316378, 39.585045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690198415", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.311491, 39.622755 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690198478", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.316034, 39.621468 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690198519", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.311464, 39.621822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690196859", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.315407, 39.631155 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690196864", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.315900, 39.630178 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690196975", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.309728, 39.631009 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977524112", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.317866, 39.636342 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690196975", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.309728, 39.631009 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690196969", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.308516, 39.631878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066752487", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.319301, 39.647570 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104689800682", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.312738, 39.647479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107118523237", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.312716, 39.654240 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432000", "POINTID": "1102653971171", "FULLNAME": "Camby", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.316656, 39.662545 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431518", "POINTID": "1102653969483", "FULLNAME": "Bridgeport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.317212, 39.732268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104976012611", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.317963, 39.741015 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104976452995", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.318502, 39.744748 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052094919", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.319548, 39.757006 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052094893", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.318008, 39.759402 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052090988", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.315428, 39.771762 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969365", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.318631, 39.780172 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052090895", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.311568, 39.774955 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977469473", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.319722, 39.788563 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977469492", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.318582, 39.789689 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072637679", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.319049, 39.798186 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072637671", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.318566, 39.802472 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072637665", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.311359, 39.804073 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072637672", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.316780, 39.800084 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977545872", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.319188, 39.825240 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977546107", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.318792, 39.827846 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014477987", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.319736, 39.841398 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437090", "POINTID": "1102654014305", "FULLNAME": "Jones Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.314988, 39.852543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106253879136", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.308575, 39.890567 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106253878134", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.314771, 39.893726 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106253878256", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.313733, 39.895703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051976552", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.317697, 39.914925 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051976366", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.311072, 39.917642 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051974791", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.316552, 39.920051 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051976752", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.311134, 39.919823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433858", "POINTID": "1102653976673", "FULLNAME": "Eaglewood Estates", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.313046, 39.951429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066057049", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.308867, 39.966069 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016955055753", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.316635, 39.980690 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016955055424", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.310868, 39.981932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12366 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439031", "POINTID": "1102654015977", "FULLNAME": "Merrit Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.308604, 40.329757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12365 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439031", "POINTID": "1102654015977", "FULLNAME": "Merrit Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.308604, 40.329757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12341 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437165", "POINTID": "1102654014357", "FULLNAME": "Kappa Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.314159, 40.532536 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12329 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433385", "POINTID": "1102653975294", "FULLNAME": "Deacon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.317217, 40.633926 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445728", "POINTID": "1102654021676", "FULLNAME": "West Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.312494, 40.670593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535068689", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.310281, 40.768484 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535063799", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.316195, 40.775066 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12311 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430899", "POINTID": "1102654007471", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.311938, 40.785871 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439048", "POINTID": "1102653990372", "FULLNAME": "Metea", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.309441, 40.869205 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441039", "POINTID": "1102653994795", "FULLNAME": "Pershing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.318888, 41.096151 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051952076", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.316994, 41.332768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441379", "POINTID": "1102653995290", "FULLNAME": "Plymouth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.309726, 41.343653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12240 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015484993553", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -86.313441, 41.372988 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015484990878", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.310611, 41.369363 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048276853", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.319213, 41.376978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434307", "POINTID": "1102654011798", "FULLNAME": "Fairmount Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.313339, 41.410599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292632", "FULLNAME": "Sherk Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.315117, 41.425863 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452885", "POINTID": "1102653962624", "FULLNAME": "South Bend Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.313896, 41.628100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452533", "POINTID": "1102653965490", "FULLNAME": "Ardmore", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.317507, 41.689214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452533", "POINTID": "1102653965490", "FULLNAME": "Ardmore", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.317507, 41.689214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292477", "FULLNAME": "South Bend Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.317332, 41.708222 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103731792530", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.317531, 41.734441 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103731772511", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.319210, 41.743474 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103731771030", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.314479, 41.741457 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12610 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443150", "POINTID": "1102653954511", "FULLNAME": "Scott Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.304420, 38.248119 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442628", "POINTID": "1102654019018", "FULLNAME": "Saint Josephs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.307199, 38.291728 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451367", "POINTID": "1102654018171", "FULLNAME": "Providence Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.306649, 38.488669 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12578 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451318", "POINTID": "1102653953833", "FULLNAME": "Patton Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.299705, 38.523112 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444952", "POINTID": "1102653955133", "FULLNAME": "Tunnel Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.306274, 38.765417 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12531 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451653", "POINTID": "1102654003632", "FULLNAME": "Zelma", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.301931, 38.933940 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451653", "POINTID": "1102654003632", "FULLNAME": "Zelma", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.301931, 38.933940 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430434", "POINTID": "1102653950643", "FULLNAME": "Baker Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.298047, 39.246157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432979", "POINTID": "1102653973888", "FULLNAME": "Cornelius", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.298047, 39.299766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292633", "FULLNAME": "Zupancic Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.305665, 39.354153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292599", "FULLNAME": "Donica Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.304267, 39.406143 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047028974", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.301194, 39.442900 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434554", "POINTID": "1102654012006", "FULLNAME": "Flake Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.298321, 39.472546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047028913", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.304361, 39.479521 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047772567", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.308712, 39.512277 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106068753038", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.303927, 39.513156 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106068753099", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.301438, 39.514530 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110268075600", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.304254, 39.580385 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267828320", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.305512, 39.579854 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110268075600", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.304254, 39.580385 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104699102042", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.301641, 39.581030 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047041662", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.302532, 39.613425 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718536089", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.307451, 39.618586 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047041664", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.299855, 39.616745 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690196952", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.307934, 39.628966 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690198383", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.304970, 39.624193 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690196969", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.308516, 39.631878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977522400", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.308173, 39.644575 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504270466", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.308173, 39.690906 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476140789", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.297970, 39.772162 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472761067", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.308285, 39.782192 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080799316", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.304691, 39.791632 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080799249", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.304485, 39.786950 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080799316", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.304691, 39.791632 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452345", "POINTID": "1102653959351", "FULLNAME": "Indianapolis Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.306070, 39.806702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977545617", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.297894, 39.819559 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051980887", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.299919, 39.849786 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051980961", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.298742, 39.851606 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106253879135", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.308320, 39.891579 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444849", "POINTID": "1102654000833", "FULLNAME": "Traders Pt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.302768, 39.893652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051976479", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.308776, 39.915334 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051976368", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.308143, 39.918295 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051976368", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.308143, 39.918295 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316570163", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.302867, 39.940267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442417", "POINTID": "1102653997241", "FULLNAME": "Russell Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.301658, 39.948651 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103372163498", "FULLNAME": "Befair Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.301545, 39.943716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066059558", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.297677, 39.968360 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066057099", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.297795, 39.964110 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103371805040", "FULLNAME": "Sugar Cay Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.301100, 39.975821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066059663", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.302256, 39.982499 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066056745", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.299536, 39.981169 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066059658", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.297487, 39.978660 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452241", "POINTID": "1102653964557", "FULLNAME": "Allens Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.303047, 39.992817 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066056728", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.298597, 39.985960 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066056731", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.299826, 39.985409 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445562", "POINTID": "1102654001961", "FULLNAME": "Waugh", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.306655, 40.084466 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443140", "POINTID": "1102654019419", "FULLNAME": "Scott Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.301660, 40.273090 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443130", "POINTID": "1102653997820", "FULLNAME": "Scircleville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.299992, 40.287534 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12366 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439031", "POINTID": "1102654015977", "FULLNAME": "Merrit Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.308604, 40.329757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12365 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439031", "POINTID": "1102654015977", "FULLNAME": "Merrit Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.308604, 40.329757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442759", "POINTID": "1102654019134", "FULLNAME": "Saint Paul Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.300271, 40.345035 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066543452", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.299742, 40.471308 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066543455", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.297444, 40.471163 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066543449", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.301328, 40.472936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12317 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535055027", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.305217, 40.733025 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535354323", "FULLNAME": "Rolling Hills Golf Course", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -86.305933, 40.755196 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441499", "POINTID": "1102653995535", "FULLNAME": "Potawatomi Pt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.308326, 40.747816 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439067", "POINTID": "1102653990405", "FULLNAME": "Miami Bend", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.298050, 40.750872 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440434", "POINTID": "1102654017073", "FULLNAME": "Oak Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.303117, 41.327060 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136276102", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.300783, 41.319940 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136448301", "FULLNAME": "Plymouth Junoir High School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.301982, 41.340830 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136310940", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.298627, 41.337334 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12243 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136276119", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.306094, 41.345224 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292687", "FULLNAME": "Plymouth Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.300255, 41.365128 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435776", "POINTID": "1102653982515", "FULLNAME": "Harris", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.303616, 41.414765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437489", "POINTID": "1102653986652", "FULLNAME": "la Paz", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.308339, 41.459766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439739", "POINTID": "1102654016567", "FULLNAME": "Mount Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.301950, 41.476711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110345013680", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.300772, 41.734551 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259594977", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.301110, 41.740454 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015620690486", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.303935, 41.750540 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103731299206", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.297586, 41.747108 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8528, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103731298061", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.302776, 41.759592 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103731298147", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.300721, 41.758288 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12613 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446348", "POINTID": "1102654003375", "FULLNAME": "Wyandotte", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.294697, 38.228674 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430835", "POINTID": "1102653950916", "FULLNAME": "Benz Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.286919, 38.281730 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12586 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451376", "POINTID": "1102653954134", "FULLNAME": "Ragroad Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.286924, 38.455614 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944366960", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.296712, 38.599308 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450779", "POINTID": "1102653973004", "FULLNAME": "Claysville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.289384, 38.622686 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944363995", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.289700, 38.657796 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449728", "POINTID": "1102653997538", "FULLNAME": "Saltillo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.289150, 38.665056 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292039", "FULLNAME": "Roto-Whirl/ski World Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.297210, 39.155046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436106", "POINTID": "1102654013468", "FULLNAME": "Hickory Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.294711, 39.164767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577502051", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.294944, 39.230961 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430587", "POINTID": "1102653950850", "FULLNAME": "Baughman Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.296379, 39.240881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430587", "POINTID": "1102653950850", "FULLNAME": "Baughman Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.296379, 39.240881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435997", "POINTID": "1102653983120", "FULLNAME": "Helmsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.292769, 39.265323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047029024", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.296974, 39.442142 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444701", "POINTID": "1102654020885", "FULLNAME": "Thompson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.290266, 39.448656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047028753", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.292350, 39.493879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267815877", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.295290, 39.569647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051939728", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.294472, 39.575519 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051939741", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.290229, 39.575256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051940148", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.296417, 39.595859 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047041721", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.292801, 39.604318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446210", "POINTID": "1102654003152", "FULLNAME": "Wiser", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.293600, 39.612268 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046991927", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.291940, 39.609234 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977499695", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.297280, 39.663506 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977499683", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.294676, 39.664757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292730", "FULLNAME": "Indianapolis International Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.294657, 39.717299 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476140864", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.296816, 39.773885 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476140861", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.290797, 39.774372 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476140961", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.286463, 39.772555 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104989104464", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.294410, 39.775015 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476140959", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.287160, 39.776250 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104988975180", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.286474, 39.777233 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104474452559", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.294952, 39.812552 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977545412", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.296891, 39.818817 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292675", "FULLNAME": "Eagle Creek Airpark", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.294383, 39.830804 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104991073964", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.287624, 39.832011 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102178594916", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.297342, 39.840805 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102178594997", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.297642, 39.844477 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051980888", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.296932, 39.848829 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051980962", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.293273, 39.851555 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051980963", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.291817, 39.851578 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014177158", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.287541, 39.880398 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441270", "POINTID": "1102654017916", "FULLNAME": "Pleasant Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.291935, 39.905319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316570162", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.295580, 39.941859 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066056321", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.290376, 39.942791 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103372149959", "FULLNAME": "Farmington Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.295649, 39.943679 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066057992", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.291275, 39.946809 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066059717", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.286417, 39.948160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066056293", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.286626, 39.957610 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066059558", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.297677, 39.968360 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066057099", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.297795, 39.964110 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066056444", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.295277, 39.967870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066059629", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.293182, 39.969644 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066055915", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.289496, 39.969759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103371267606", "FULLNAME": "Rockdale Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.293716, 39.984490 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066057014", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.290666, 39.978370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103371294699", "FULLNAME": "Old Quarry Dr", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.294949, 39.989747 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066058438", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.292645, 40.005850 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066058813", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.290765, 40.005889 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442327", "POINTID": "1102653997082", "FULLNAME": "Rosston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.289158, 40.048649 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430895", "POINTID": "1102654007458", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.289990, 40.084760 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066543455", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.297444, 40.471163 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066543473", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.292860, 40.473496 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12328 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292065", "FULLNAME": "Turnpaugh Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.291492, 40.644743 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12326 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431664", "POINTID": "1102654008630", "FULLNAME": "Bruner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.295826, 40.663649 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12288 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442894", "POINTID": "1102654019234", "FULLNAME": "Salem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.290829, 40.979758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12287 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442894", "POINTID": "1102654019234", "FULLNAME": "Salem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.290829, 40.979758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136286920", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.294912, 41.308843 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136276004", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.290137, 41.309996 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136286917", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.295137, 41.312216 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108347821466", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.296248, 41.328968 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437961", "POINTID": "1102653988138", "FULLNAME": "Linkville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.286948, 41.416154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577088565", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.295518, 41.434522 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577088564", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.293874, 41.438653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437490", "POINTID": "1102653986662", "FULLNAME": "la Paz Junction", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.295006, 41.459489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732180847", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.288555, 41.630715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047506495", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.290293, 41.632493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047506369", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.289963, 41.647116 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047506264", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.291066, 41.649359 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047318422", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.296773, 41.713490 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259617820", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.289255, 41.712759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052272455", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.295314, 41.720717 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047318398", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.293107, 41.714112 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047318368", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.290489, 41.714100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103731298805", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.296111, 41.751458 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103731299206", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.297586, 41.747108 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732655068", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.291538, 41.747418 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8529, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103731298312", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.297733, 41.756075 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431494", "POINTID": "1102654008343", "FULLNAME": "Brewer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.279140, 38.171455 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12614 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435426", "POINTID": "1102653952264", "FULLNAME": "Greenbrier Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.283861, 38.217839 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12587 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451607", "POINTID": "1102654021519", "FULLNAME": "Walton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.280814, 38.445335 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12586 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451013", "POINTID": "1102653982407", "FULLNAME": "Hardinsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.278591, 38.460892 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12574 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451166", "POINTID": "1102653988321", "FULLNAME": "Livonia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.277480, 38.557000 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12568 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944367112", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.286093, 38.612796 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12561 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944363985", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.282456, 38.670348 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12557 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440059", "POINTID": "1102654016752", "FULLNAME": "New Hope Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.276372, 38.705054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434688", "POINTID": "1102653979563", "FULLNAME": "Fort Ritner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.281096, 38.773109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437744", "POINTID": "1102653987536", "FULLNAME": "Leesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.284430, 38.845607 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451855", "POINTID": "1102653960438", "FULLNAME": "Maumee Boy Scout Reservation", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.282764, 39.002827 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451400", "POINTID": "1102654018645", "FULLNAME": "Robinson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.277488, 39.037828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439944", "POINTID": "1102654016651", "FULLNAME": "Nast Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.284156, 39.423657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292720", "FULLNAME": "Jungclaus Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.279972, 39.454101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431502", "POINTID": "1102654008349", "FULLNAME": "Brian Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.279433, 39.474767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047028708", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.277515, 39.535553 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434738", "POINTID": "1102653979750", "FULLNAME": "Fox Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.283877, 39.600600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047041778", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.278886, 39.608825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439176", "POINTID": "1102653990704", "FULLNAME": "Miller", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.281933, 39.620601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445794", "POINTID": "1102654002420", "FULLNAME": "West Newton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.282764, 39.653111 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434845", "POINTID": "1102654012237", "FULLNAME": "Friends Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.279709, 39.654211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066758724", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.278285, 39.681845 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105013837505", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.280463, 39.678019 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105013835357", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.278328, 39.683418 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445198", "POINTID": "1102654001315", "FULLNAME": "Valley Mills", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.277209, 39.691156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444132", "POINTID": "1102653999473", "FULLNAME": "Sterling Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.284153, 39.742546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066773925", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.283676, 39.756558 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066778191", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.281241, 39.751143 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066778193", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.280068, 39.751162 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449856", "POINTID": "1102653962380", "FULLNAME": "Sabine", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.285543, 39.761435 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437282", "POINTID": "1102653985981", "FULLNAME": "Keystone Manor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.276375, 39.763379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476140960", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.284996, 39.774466 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434394", "POINTID": "1102653978486", "FULLNAME": "Farleys Addition", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.278878, 39.783378 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104988975180", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.286474, 39.777233 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104988975157", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.280299, 39.778288 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434394", "POINTID": "1102653978486", "FULLNAME": "Farleys Addition", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.278878, 39.783378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432027", "POINTID": "1102653956523", "FULLNAME": "Camp Dellwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.284432, 39.796710 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105013703948", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.279376, 39.797258 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485244691", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.282493, 39.810603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104991073776", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.286626, 39.831251 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051981547", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.283638, 39.832503 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051981544", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.279057, 39.833619 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051981546", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.284376, 39.835230 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051981490", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.280739, 39.835630 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066774258", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.277928, 39.843019 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977486735", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.283429, 39.875993 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014175539", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.280935, 39.874443 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014177202", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.286723, 39.880046 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437549", "POINTID": "1102653986945", "FULLNAME": "Lakeside", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.284988, 39.884207 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977486772", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.280750, 39.878197 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977486735", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.283429, 39.875993 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296331907", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.280186, 39.888307 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292804", "FULLNAME": "Mikelsons Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.283598, 39.895041 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977487772", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.280329, 39.894327 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066773113", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.277963, 39.913923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066058110", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.282716, 39.932800 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443336", "POINTID": "1102654019584", "FULLNAME": "Sheets Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.279736, 39.931739 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066059701", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.284727, 39.941939 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066058103", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.281326, 39.936420 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066059706", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.286136, 39.949239 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066056640", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.279647, 39.945879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066056293", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.286626, 39.957610 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066059728", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.283247, 39.956331 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066055957", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.275707, 39.968760 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066055945", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.279666, 39.964739 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066056407", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.277866, 39.960990 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066055971", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.275455, 39.966470 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066083252", "FULLNAME": "Pleasant View Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.284966, 39.969940 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066056391", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.275487, 39.973651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046994176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.278017, 40.027479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046994174", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.281895, 40.029079 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440326", "POINTID": "1102653993503", "FULLNAME": "Northfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.280283, 40.030870 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046994176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.278017, 40.027479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444644", "POINTID": "1102654000464", "FULLNAME": "Terhune", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.280280, 40.165336 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430423", "POINTID": "1102654006909", "FULLNAME": "Baker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.275546, 40.287256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538831", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.278022, 40.407096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538940", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.279382, 40.414650 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12341 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440304", "POINTID": "1102654017001", "FULLNAME": "North Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.282214, 40.536980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12336 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435753", "POINTID": "1102654013156", "FULLNAME": "Harness Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.281938, 40.576425 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12324 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441752", "POINTID": "1102654018270", "FULLNAME": "Ramer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.283883, 40.678649 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12319 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430184", "POINTID": "1102653965161", "FULLNAME": "Anoka", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.282493, 40.721982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12249 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452383", "POINTID": "1102653961925", "FULLNAME": "Plymouth Speedway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.282780, 41.300598 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444538", "POINTID": "1102654020716", "FULLNAME": "Tabor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.280280, 41.302265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136311010", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.283609, 41.338891 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047728486", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.281198, 41.478691 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103717963609", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.281807, 41.534710 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103717963638", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.278226, 41.534774 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452711", "POINTID": "1102653993593", "FULLNAME": "Nutwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.281949, 41.593934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047509664", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.276394, 41.612019 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344787923", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.278226, 41.626266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729444653", "FULLNAME": "Baley Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.281804, 41.646482 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452626", "POINTID": "1102654013542", "FULLNAME": "Highland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.284451, 41.709491 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504148290", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -86.278070, 41.708760 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504147826", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -86.281691, 41.715115 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504147939", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.280825, 41.714769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344779581", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.284078, 41.736935 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344787893", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.284003, 41.731327 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047452698", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.279087, 41.732784 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047452693", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.275431, 41.730772 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732654920", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.280884, 41.746236 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109097047084", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.284199, 41.752205 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109097050296", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.282426, 41.759782 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109097048440", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.277389, 41.759780 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440016", "POINTID": "1102653992285", "FULLNAME": "New Amsterdam", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.274972, 38.102288 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12607 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433762", "POINTID": "1102653951873", "FULLNAME": "Duke Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.271920, 38.278675 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450834", "POINTID": "1102653951642", "FULLNAME": "Davis Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.268036, 38.507557 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12579 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451469", "POINTID": "1102654019856", "FULLNAME": "Sinking Spring Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.273036, 38.520613 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12558 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944363969", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.272647, 38.697897 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434311", "POINTID": "1102653978302", "FULLNAME": "Fairview", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.267484, 38.738109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451280", "POINTID": "1102653993216", "FULLNAME": "Norman", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.274986, 38.952551 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450887", "POINTID": "1102653977462", "FULLNAME": "Elkinsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.264710, 39.076160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110101331181", "FULLNAME": "Brown County State Park", "MTFCC": "K2184" }, "geometry": { "type": "Point", "coordinates": [ -86.266175, 39.115280 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437218", "POINTID": "1102653953036", "FULLNAME": "Kelley Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.268878, 39.177826 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445558", "POINTID": "1102653955334", "FULLNAME": "Watton Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.266934, 39.213658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430181", "POINTID": "1102653965130", "FULLNAME": "Annandale Estates", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.266100, 39.217825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12479 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446064", "POINTID": "1102654022026", "FULLNAME": "Williams Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.275267, 39.371435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452102", "POINTID": "1102653972641", "FULLNAME": "Chetwynd", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.269388, 39.443031 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047028707", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.275098, 39.535526 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436679", "POINTID": "1102654014050", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.268876, 39.535323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438446", "POINTID": "1102654015375", "FULLNAME": "Mackenzie Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.274709, 39.553100 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445567", "POINTID": "1102654001979", "FULLNAME": "Waverly Woods", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.269710, 39.551434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445565", "POINTID": "1102654001969", "FULLNAME": "Waverly", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.271375, 39.556990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292689", "FULLNAME": "Kay Air Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.274278, 39.586651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439613", "POINTID": "1102654016448", "FULLNAME": "Mount Olive Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.271654, 39.610879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977519969", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.266258, 39.663342 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311304594", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.274481, 39.672999 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014256355", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.268843, 39.667014 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104976010219", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.264547, 39.673302 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105013835345", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.271477, 39.681956 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066775630", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.274304, 39.681054 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104976010728", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.266295, 39.678416 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104976010219", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.264547, 39.673302 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105013835354", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.274471, 39.683704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066780126", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.272666, 39.699642 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096255", "POINTID": "1102654007526", "FULLNAME": "Bethel Methodist Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.274996, 39.713333 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452214", "POINTID": "1102653955956", "FULLNAME": "Ben Davis Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.268041, 39.738934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446682", "POINTID": "1102653967604", "FULLNAME": "Ben Davis", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.269431, 39.748099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452264", "POINTID": "1102653955894", "FULLNAME": "Ayr-Way Washington West Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.265834, 39.749685 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066775147", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.266998, 39.769525 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977782037", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.275313, 39.775312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443930", "POINTID": "1102653999080", "FULLNAME": "Speedway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.267210, 39.802266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080827574", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.267435, 39.816843 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080827578", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.268487, 39.820164 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080827574", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.267435, 39.816843 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104984199637", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.265008, 39.833726 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051986511", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.268315, 39.835045 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104984199637", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.265008, 39.833726 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066772294", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.267146, 39.850573 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066772294", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.267146, 39.850573 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051985707", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.270450, 39.862929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107292575376", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.275069, 39.886852 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440342", "POINTID": "1102653993529", "FULLNAME": "Northwest Manor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.274709, 39.899208 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977487250", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.274409, 39.896911 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105317166133", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.272891, 39.928331 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066059074", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.275726, 39.939829 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066056646", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.272306, 39.942260 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066060189", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.272647, 39.936241 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066060186", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.269678, 39.938910 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066083274", "FULLNAME": "Zionsville Christian Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -86.271539, 39.950469 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066060184", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.266446, 39.945680 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066083250", "FULLNAME": "Zionsville High School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.274146, 39.960282 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066059682", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.268428, 39.960159 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066083253", "FULLNAME": "Eagle Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.268919, 39.954100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066055957", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.275707, 39.968760 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066055971", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.275455, 39.966470 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066060012", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.269517, 39.964299 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066059682", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.268428, 39.960159 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066055957", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.275707, 39.968760 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066056388", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.275157, 39.974750 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066058796", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.273036, 40.002520 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066058796", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.273036, 40.002520 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430423", "POINTID": "1102654006909", "FULLNAME": "Baker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.275546, 40.287256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12367 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444279", "POINTID": "1102654020501", "FULLNAME": "Stroup Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.275270, 40.315313 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440082", "POINTID": "1102653992642", "FULLNAME": "New London", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.271381, 40.443369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437138", "POINTID": "1102653985685", "FULLNAME": "Judson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.271381, 40.503925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12341 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437166", "POINTID": "1102653985767", "FULLNAME": "Kappa Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.270826, 40.532814 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12311 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449611", "POINTID": "1102653964106", "FULLNAME": "Adamsboro", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.266939, 40.784481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449716", "POINTID": "1102653996408", "FULLNAME": "Richland Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.270555, 41.156429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136300877", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.270101, 41.341789 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047730628", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.273449, 41.483744 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047730628", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.273449, 41.483744 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452658", "POINTID": "1102653987023", "FULLNAME": "Lakeville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.273339, 41.524489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452571", "POINTID": "1102653973449", "FULLNAME": "Colburn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.268336, 41.548935 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452659", "POINTID": "1102654014755", "FULLNAME": "Lakeville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.268615, 41.543102 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472214205", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.271676, 41.604041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047508502", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.273344, 41.613078 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472212362", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.264638, 41.607513 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052004868", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.264715, 41.668542 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047472474", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.264600, 41.671389 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504149857", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.273814, 41.711804 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047452758", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.274937, 41.727387 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732662781", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.271724, 41.737726 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732660592", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.270737, 41.745835 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12633 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444787", "POINTID": "1102654000703", "FULLNAME": "Titus", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.256081, 38.054233 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12610 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449857", "POINTID": "1102653962534", "FULLNAME": "Sharps Mill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.257197, 38.254786 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451576", "POINTID": "1102654020991", "FULLNAME": "Totten Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.262200, 38.378950 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451300", "POINTID": "1102654017382", "FULLNAME": "Old Unity Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.258589, 38.427559 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12587 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292523", "FULLNAME": "Lowells Landing", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.259555, 38.446096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12581 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451008", "POINTID": "1102654013134", "FULLNAME": "Hardin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.255258, 38.500613 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12577 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451609", "POINTID": "1102653955313", "FULLNAME": "Warren Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.262202, 38.534502 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12575 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451431", "POINTID": "1102653954410", "FULLNAME": "Sand Bank Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.257758, 38.551446 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944368102", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.261317, 38.596298 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944368092", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.261196, 38.622548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12566 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944368089", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.260309, 38.630623 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944364016", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.263911, 38.646749 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944363864", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.263664, 38.652183 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944363957", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.261483, 38.694022 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12558 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944363957", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.261483, 38.694022 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452184", "POINTID": "1102653969600", "FULLNAME": "Brimstone Cors", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.264428, 38.737277 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431599", "POINTID": "1102654008551", "FULLNAME": "Brown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.256374, 38.811164 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451203", "POINTID": "1102653989732", "FULLNAME": "Maumee", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.261655, 39.021161 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450719", "POINTID": "1102653951154", "FULLNAME": "Browning Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.261931, 39.063938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450887", "POINTID": "1102653977462", "FULLNAME": "Elkinsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.264710, 39.076160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450888", "POINTID": "1102654011604", "FULLNAME": "Elkinsville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.262210, 39.088660 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445796", "POINTID": "1102654002430", "FULLNAME": "West Overlook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.254705, 39.171432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433756", "POINTID": "1102653951850", "FULLNAME": "Dug Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.256655, 39.231158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434882", "POINTID": "1102653980123", "FULLNAME": "Fruitdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.257766, 39.321990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110101158066", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.255674, 39.328032 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12479 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439438", "POINTID": "1102653991448", "FULLNAME": "Morgantown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.261100, 39.371435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443386", "POINTID": "1102654019679", "FULLNAME": "Shiloh Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.263876, 39.526434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437600", "POINTID": "1102653987156", "FULLNAME": "Landersdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.263042, 39.619489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977520495", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.257334, 39.665071 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104976010219", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.264547, 39.673302 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014255285", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.256347, 39.669605 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104976010526", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.264742, 39.676593 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104976009877", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.263782, 39.676649 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104976010788", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.258227, 39.675105 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104976010219", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.264547, 39.673302 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105317150794", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.261789, 39.709071 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105317150809", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.258230, 39.708809 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439082", "POINTID": "1102653990461", "FULLNAME": "Mickleyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.261376, 39.747545 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476140327", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.259354, 39.774800 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052034772", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.257903, 39.774557 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476140327", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.259354, 39.774800 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104979729425", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.255553, 39.777965 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449434", "POINTID": "1102653962765", "FULLNAME": "Speedway Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.262645, 39.801048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104988990713", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.264836, 39.832855 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066773826", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.261674, 39.844197 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443720", "POINTID": "1102653998713", "FULLNAME": "Snacks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.256377, 39.845876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051985770", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.263471, 39.858218 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051985782", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.258568, 39.857053 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051985598", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.264294, 39.865422 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051985772", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.261599, 39.859103 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051985579", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.264171, 39.873593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437751", "POINTID": "1102653987551", "FULLNAME": "Legendary Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.262210, 39.879208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105317158765", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.253515, 39.914723 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012812533440", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.260349, 39.932971 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107292762054", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.254081, 39.928010 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446483", "POINTID": "1102654003652", "FULLNAME": "Zionsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.261934, 39.950886 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066083283", "FULLNAME": "Lions Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -86.258667, 39.948999 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066060431", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.254646, 39.952213 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066060446", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.253737, 39.951781 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440325", "POINTID": "1102653993497", "FULLNAME": "Northern Meadows", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.258876, 39.966707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052038373", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.262637, 39.974251 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066056547", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.259027, 39.973759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102213998770", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.254467, 39.983670 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102213999053", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.254097, 39.978600 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102213999171", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.253617, 39.977661 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319769069", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.258096, 39.993750 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045756103", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.258155, 40.001271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319768538", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.257401, 40.002582 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440910", "POINTID": "1102654017671", "FULLNAME": "Parr-Jones Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.261100, 40.071149 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441098", "POINTID": "1102653994921", "FULLNAME": "Pickard", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.261379, 40.223091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12369 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441536", "POINTID": "1102654018077", "FULLNAME": "Prairie Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.261937, 40.300034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12366 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430393", "POINTID": "1102654006841", "FULLNAME": "Bacon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.260268, 40.322535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441591", "POINTID": "1102654018143", "FULLNAME": "Price Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.263602, 40.475036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292081", "FULLNAME": "Galveston Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.256937, 40.584202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445454", "POINTID": "1102654021524", "FULLNAME": "Walton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.254437, 40.671704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12317 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443259", "POINTID": "1102654019512", "FULLNAME": "Shaff Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.258326, 40.731982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446700", "POINTID": "1102653975052", "FULLNAME": "Danes", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.261103, 40.761151 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439526", "POINTID": "1102654016329", "FULLNAME": "Mount Calvary Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.260826, 40.778372 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12311 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446701", "POINTID": "1102653993861", "FULLNAME": "Old Adamsboro", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.261103, 40.783371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12291 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434896", "POINTID": "1102653980143", "FULLNAME": "Fulton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.262774, 40.947259 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12290 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434897", "POINTID": "1102654012278", "FULLNAME": "Fulton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.256398, 40.956134 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12285 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430200", "POINTID": "1102654006682", "FULLNAME": "Antioch Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.256387, 41.001982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011217213983", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.262985, 41.119208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292695", "FULLNAME": "Birkey Private Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.259837, 41.441697 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344989675", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.257149, 41.506997 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452697", "POINTID": "1102654016334", "FULLNAME": "Mount Calvary Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.262226, 41.572268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472212369", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.263608, 41.605072 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452803", "POINTID": "1102654020082", "FULLNAME": "Southlawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.254300, 41.604428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472212362", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.264638, 41.607513 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047508528", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.262825, 41.620269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052004868", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.264715, 41.668542 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047472474", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.264600, 41.671389 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052005180", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.256028, 41.671395 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292438", "FULLNAME": "Memorial Hospital at South Bend", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.253480, 41.684054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346080743", "FULLNAME": "Sisters of the Congregation of the Holy Cross", "MTFCC": "K1239" }, "geometry": { "type": "Point", "coordinates": [ -86.264080, 41.704651 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052008623", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.261416, 41.698319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052117850", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.253912, 41.728731 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047444388", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.264801, 41.744300 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452858", "POINTID": "1102653976207", "FULLNAME": "Dreamwold Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.254172, 41.752825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452857", "POINTID": "1102653999407", "FULLNAME": "State Line", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.254174, 41.758382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12631 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443415", "POINTID": "1102653954642", "FULLNAME": "Shireman Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.244693, 38.066733 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431921", "POINTID": "1102653951327", "FULLNAME": "Buzzard Roost Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.252753, 38.300342 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437013", "POINTID": "1102653952904", "FULLNAME": "Joe Walk Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.246367, 38.402561 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12572 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292563", "FULLNAME": "Myers Farm Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.252334, 38.581375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944368130", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.244435, 38.594462 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12566 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435640", "POINTID": "1102654013071", "FULLNAME": "Hamilton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.244148, 38.628111 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944364125", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.245473, 38.650832 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439536", "POINTID": "1102654016336", "FULLNAME": "Mount Carmel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.250537, 38.716998 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450748", "POINTID": "1102654009139", "FULLNAME": "Callahan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.251653, 38.976718 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451627", "POINTID": "1102653955405", "FULLNAME": "Wilkerson Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.245264, 39.072551 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451353", "POINTID": "1102653954039", "FULLNAME": "Polly Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.244709, 39.092549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444828", "POINTID": "1102654000788", "FULLNAME": "Town Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.246656, 39.198103 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444828", "POINTID": "1102654000788", "FULLNAME": "Town Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.246656, 39.198103 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439943", "POINTID": "1102653992067", "FULLNAME": "Nashville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.251101, 39.207270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110101152049", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.246077, 39.220322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430609", "POINTID": "1102653967039", "FULLNAME": "Beanblossom", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.249156, 39.266990 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435028", "POINTID": "1102654012427", "FULLNAME": "Georgetown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.246935, 39.268658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110101152174", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.252849, 39.327768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267841706", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.252326, 39.377842 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430477", "POINTID": "1102653966595", "FULLNAME": "Banta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.250264, 39.523934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113562766", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.244046, 39.539377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431263", "POINTID": "1102653968672", "FULLNAME": "Bluffs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.251181, 39.568919 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439654", "POINTID": "1102654016476", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.250540, 39.670323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096272", "POINTID": "1102654015505", "FULLNAME": "Mars-Beeler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.243330, 39.689723 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690227169", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.243424, 39.714844 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499733087", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.245342, 39.719991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433689", "POINTID": "1102653976228", "FULLNAME": "Drexel Gardens", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.246375, 39.740601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438429", "POINTID": "1102653988863", "FULLNAME": "Lynhurst", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.248040, 39.758934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066774427", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.252847, 39.774767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104979729536", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.252597, 39.777561 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292763", "FULLNAME": "Allison Plant 3 Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.245817, 39.779210 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066774427", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.252847, 39.774767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104258985837", "FULLNAME": "Beeler Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.251771, 39.814251 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052092557", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.250583, 39.810829 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977715141", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.243218, 39.815100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259263417", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.251168, 39.843116 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051987508", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.243089, 39.866303 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102178603377", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.248620, 39.876098 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102179979778", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.249743, 39.871983 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102178603431", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.247227, 39.875062 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102178603250", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.249743, 39.881196 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102178603403", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.246230, 39.877843 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105317158765", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.253515, 39.914723 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012028423934", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.248099, 39.933271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102213954042", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.246463, 39.941425 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066060446", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.253737, 39.951781 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319762698", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.248566, 39.948016 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066060624", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.243947, 39.946720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066060446", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.253737, 39.951781 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066060440", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.250966, 39.958282 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066060444", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.252316, 39.953640 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292050", "FULLNAME": "Summe Farm Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.246640, 39.958956 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103404040746", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.251087, 39.968600 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016954980179", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.250706, 39.961880 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433855", "POINTID": "1102653976641", "FULLNAME": "Eagle Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.245551, 39.960593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432576", "POINTID": "1102654009971", "FULLNAME": "Clarkstown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.250822, 39.969484 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103404040746", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.251087, 39.968600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102213998902", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.253077, 39.983709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103694821317", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.246847, 39.994110 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012812496272", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.251337, 39.989912 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103694821318", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.244599, 39.992238 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046027824", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.253697, 40.000560 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046027837", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.251436, 40.000891 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319769071", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.252667, 39.995111 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016954975733", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.247788, 39.998139 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319768054", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.249888, 40.005343 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292068", "FULLNAME": "Indianapolis Executive Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.251439, 40.030664 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538089", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.245253, 40.473189 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12340 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442398", "POINTID": "1102654018771", "FULLNAME": "Rush Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.243604, 40.540036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440933", "POINTID": "1102654017699", "FULLNAME": "Patterson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.245548, 40.605315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445243", "POINTID": "1102654021318", "FULLNAME": "Venard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.252214, 40.671704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439068", "POINTID": "1102654016037", "FULLNAME": "Miami Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.251382, 40.778648 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535074023", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.251058, 40.864402 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12287 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439614", "POINTID": "1102654016449", "FULLNAME": "Mount Olive Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.242496, 40.982816 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136305565", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.253037, 41.243605 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440175", "POINTID": "1102654016881", "FULLNAME": "Nighthart Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.251945, 41.376988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047740951", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.250561, 41.520843 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047752355", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.247509, 41.549889 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452802", "POINTID": "1102654020077", "FULLNAME": "Southlawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.249727, 41.603103 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047509702", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.246262, 41.599986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01867274", "POINTID": "1102653981946", "FULLNAME": "Gulivoire Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.245283, 41.613381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104470158195", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.251498, 41.620782 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047508539", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.242995, 41.618376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047502651", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.246997, 41.625612 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346080744", "FULLNAME": "in Dept of Corrections-South Bend Work Release Ctr", "MTFCC": "K1237" }, "geometry": { "type": "Point", "coordinates": [ -86.249928, 41.649411 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452859", "POINTID": "1102653961281", "FULLNAME": "North Pumping Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.249727, 41.686157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430243", "POINTID": "1102653965508", "FULLNAME": "Argos", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.245007, 41.697270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346080747", "FULLNAME": "Saint Mary's College", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.251567, 41.700262 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346080738", "FULLNAME": "Carroll Hall", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.248080, 41.701852 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346080742", "FULLNAME": "Fischer Hall", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.243480, 41.700432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452756", "POINTID": "1102653997054", "FULLNAME": "Roseland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.252506, 41.716158 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344791076", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.246219, 41.717976 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432897", "POINTID": "1102654010532", "FULLNAME": "Conrad Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.233583, 38.206454 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12612 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443172", "POINTID": "1102653954517", "FULLNAME": "Scout Mtn", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.238306, 38.236731 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438138", "POINTID": "1102653988272", "FULLNAME": "Little Saint Louis", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.236917, 38.302840 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431539", "POINTID": "1102653951118", "FULLNAME": "Britton Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.241367, 38.391449 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12587 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438884", "POINTID": "1102653953537", "FULLNAME": "McIntosh Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.234699, 38.450614 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12576 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441136", "POINTID": "1102653953893", "FULLNAME": "Pikes Peak", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.233036, 38.546724 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12571 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944368104", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.231558, 38.589577 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944368132", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.235512, 38.620538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944364126", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.233433, 38.651404 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443912", "POINTID": "1102653999028", "FULLNAME": "Sparksville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.237207, 38.777831 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450804", "POINTID": "1102654010642", "FULLNAME": "Cornett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.235541, 38.985329 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110101143253", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.232907, 39.158651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438805", "POINTID": "1102654015663", "FULLNAME": "McColgin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.239709, 39.512267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438503", "POINTID": "1102654015391", "FULLNAME": "Mallow Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.234707, 39.547266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444859", "POINTID": "1102653955050", "FULLNAME": "Travis Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.236638, 39.572641 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438526", "POINTID": "1102653953328", "FULLNAME": "Mann Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.237550, 39.654785 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052044413", "FULLNAME": "Standish Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.237888, 39.709333 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499732238", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.238961, 39.716474 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019665352230", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.240315, 39.762369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292724", "FULLNAME": "500 Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.233318, 39.782821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452346", "POINTID": "1102653959366", "FULLNAME": "Indianapolis Motor Speedway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.235316, 39.794647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052093151", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.232199, 39.802752 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106047325624", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.234388, 39.815531 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449421", "POINTID": "1102653959745", "FULLNAME": "Lafayette Square Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.241930, 39.822822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977539289", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.234280, 39.832404 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449422", "POINTID": "1102653958117", "FULLNAME": "Georgetown Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.233567, 39.828365 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051994793", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.238779, 39.842305 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051994818", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.240970, 39.841781 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051994844", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.234731, 39.842195 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499725043", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.239953, 39.849201 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051994795", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.239393, 39.842953 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051994794", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.239800, 39.842195 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051994844", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.234731, 39.842195 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051987507", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.241826, 39.866643 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440018", "POINTID": "1102653992292", "FULLNAME": "New Augusta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.238599, 39.883374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977510343", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.234146, 39.885570 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105317162715", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.239578, 39.935694 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977533401", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.231968, 39.944905 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105580088433", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.239935, 39.958066 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105580089930", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.236603, 39.958039 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105579947773", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.232829, 39.971657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105579936646", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.239886, 39.983568 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105579936647", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.236351, 39.984090 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311411424", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.234825, 39.987684 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443938", "POINTID": "1102654020129", "FULLNAME": "Spencer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.241657, 40.161704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538896", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.235648, 40.503064 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12326 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445453", "POINTID": "1102654001808", "FULLNAME": "Walton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.241935, 40.660870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12287 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439614", "POINTID": "1102654016449", "FULLNAME": "Mount Olive Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.242496, 40.982816 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136306366", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.239543, 41.233923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438554", "POINTID": "1102654015413", "FULLNAME": "Maple Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.232778, 41.244208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047509754", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.241777, 41.598502 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452687", "POINTID": "1102653990417", "FULLNAME": "Miami Trails Addition", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.236115, 41.598935 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047509614", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.239532, 41.605379 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013783599062", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.233940, 41.606199 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452687", "POINTID": "1102653990417", "FULLNAME": "Miami Trails Addition", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.236115, 41.598935 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047336357", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.240820, 41.614161 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047509211", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.232245, 41.611791 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110345014441", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.231630, 41.613347 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047509146", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.232403, 41.607120 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047502678", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.242303, 41.621356 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047508556", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.232532, 41.620391 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504145597", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.236129, 41.625849 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047502559", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.242225, 41.638563 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047501392", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.234074, 41.638795 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047502382", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.233452, 41.634566 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047501378", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.232199, 41.640563 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052173560", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.240192, 41.662156 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452551", "POINTID": "1102654008201", "FULLNAME": "Bowman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.233894, 41.657269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452561", "POINTID": "1102654009546", "FULLNAME": "Cedar Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.240562, 41.694492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346080745", "FULLNAME": "Columba Hall", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.241895, 41.704179 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346080741", "FULLNAME": "Farley Hall", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.235901, 41.705388 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452637", "POINTID": "1102653984946", "FULLNAME": "Indian Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.235563, 41.713936 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015922317279", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -86.236550, 41.712639 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452637", "POINTID": "1102653984946", "FULLNAME": "Indian Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.235563, 41.713936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047452843", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.233696, 41.723822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732685234", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.238985, 41.737274 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047316585", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.239473, 41.752209 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472653395", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.237816, 41.747180 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445195", "POINTID": "1102654001303", "FULLNAME": "Valley City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.222750, 38.093956 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12613 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449745", "POINTID": "1102654002754", "FULLNAME": "White Cloud", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.224418, 38.228120 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12609 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441205", "POINTID": "1102654017877", "FULLNAME": "Pitman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.225528, 38.260064 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439728", "POINTID": "1102654016546", "FULLNAME": "Mount Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.222197, 38.359784 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444247", "POINTID": "1102653954794", "FULLNAME": "Stout Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.227199, 38.402561 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437581", "POINTID": "1102653953136", "FULLNAME": "Lambert Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.231089, 38.428671 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435434", "POINTID": "1102653952274", "FULLNAME": "Greene Mill Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.223310, 38.431448 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443694", "POINTID": "1102653954697", "FULLNAME": "Smith Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.226371, 38.568668 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12571 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944368104", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.231558, 38.589577 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01923629", "POINTID": "1102654016529", "FULLNAME": "Mount Tabor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.221092, 38.593112 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944368135", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.225207, 38.624262 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444148", "POINTID": "1102654020361", "FULLNAME": "Stewart Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.223911, 38.781427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451005", "POINTID": "1102654013115", "FULLNAME": "Hanner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.224152, 38.976163 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451056", "POINTID": "1102653952704", "FULLNAME": "Hominy Mortar", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.226931, 39.006996 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451117", "POINTID": "1102653953068", "FULLNAME": "Kirk Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.226100, 39.078939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12513 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451117", "POINTID": "1102653953068", "FULLNAME": "Kirk Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.226100, 39.078939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439401", "POINTID": "1102653953580", "FULLNAME": "Moore Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.222763, 39.477268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292385", "FULLNAME": "Bronson Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.225955, 39.483787 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431260", "POINTID": "1102653968645", "FULLNAME": "Bluff Creek", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.220802, 39.557551 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438354", "POINTID": "1102654015233", "FULLNAME": "Lowe Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.220540, 39.582267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296213355", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.222991, 39.654827 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439413", "POINTID": "1102654016202", "FULLNAME": "Mooresville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.230263, 39.712822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438647", "POINTID": "1102653953362", "FULLNAME": "Mars Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.231373, 39.724212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438647", "POINTID": "1102653953362", "FULLNAME": "Mars Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.231373, 39.724212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00448344", "POINTID": "1102653978367", "FULLNAME": "Fairview Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.226929, 39.753655 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434611", "POINTID": "1102654012059", "FULLNAME": "Floral Park Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.223873, 39.769212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449433", "POINTID": "1102653955632", "FULLNAME": "Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.231097, 39.785045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449491", "POINTID": "1102653979091", "FULLNAME": "Flackville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.220818, 39.809764 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105078785870", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220684, 39.824746 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105078785872", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.224000, 39.826602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051995114", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.229967, 39.842405 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051995115", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.229943, 39.839409 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051994999", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.227682, 39.836876 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104990434059", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.223938, 39.837930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051995114", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.229967, 39.842405 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104991202348", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.222927, 39.848314 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319714794", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220523, 39.849170 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977470210", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.225188, 39.856954 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442884", "POINTID": "1102654019209", "FULLNAME": "Salem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.230820, 39.866709 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106253883728", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.226703, 39.864561 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106253883678", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.226183, 39.863849 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066772243", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.221277, 39.872246 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977509686", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.228610, 39.883588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977508282", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.227988, 39.888247 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445854", "POINTID": "1102654002588", "FULLNAME": "Westover", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.227486, 39.899485 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066755949", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.225199, 39.899171 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319719948", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.223962, 39.893491 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977492583", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.223334, 39.907105 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292824", "FULLNAME": "Roto-Whirl/holiday Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.226097, 39.922540 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977704775", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.227728, 39.934266 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440212", "POINTID": "1102653993246", "FULLNAME": "North Augusta Addition", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.227765, 39.928096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977533396", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.221242, 39.943486 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977721953", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.229123, 39.938460 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977704777", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.224426, 39.936027 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977533587", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.231014, 39.947675 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977533397", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.223970, 39.945842 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977533333", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.226985, 39.959842 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977533093", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.225333, 39.958514 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977699078", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.221588, 39.955794 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977533332", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.226985, 39.961950 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011360041803", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.224021, 39.963288 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102939749995", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.231767, 39.982466 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102939748611", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.228028, 39.982793 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052601919", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.221261, 39.982622 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813333679", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.224861, 39.990066 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813336837", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220553, 39.992747 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052582674", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.226843, 39.997562 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444339", "POINTID": "1102654020545", "FULLNAME": "Sugar Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.231378, 40.015594 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437071", "POINTID": "1102653985554", "FULLNAME": "Jolietville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.231099, 40.041982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443361", "POINTID": "1102653998268", "FULLNAME": "Sheridan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.220545, 40.135037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12388 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433214", "POINTID": "1102654011009", "FULLNAME": "Crown Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.230268, 40.143926 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437234", "POINTID": "1102653985815", "FULLNAME": "Kempton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.229705, 40.288363 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12369 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437235", "POINTID": "1102654014422", "FULLNAME": "Kempton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.225823, 40.298923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445023", "POINTID": "1102654021139", "FULLNAME": "Twin Spring Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.224713, 40.465036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444020", "POINTID": "1102654020202", "FULLNAME": "Sprinkle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.221937, 40.596981 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535076624", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.221097, 40.750327 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446068", "POINTID": "1102654022032", "FULLNAME": "Williams Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.225823, 40.763371 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434262", "POINTID": "1102654011746", "FULLNAME": "Ever Rest Memorial Gnds", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.223603, 40.759483 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535076409", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.227956, 40.865345 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445000", "POINTID": "1102654001095", "FULLNAME": "Twelve Mile", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.225271, 40.866426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328767210", "FULLNAME": "County Home", "MTFCC": "K1237" }, "geometry": { "type": "Point", "coordinates": [ -86.221527, 41.036094 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328476601", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.229879, 41.050090 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328444650", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.229605, 41.059002 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432532", "POINTID": "1102654009930", "FULLNAME": "Citizens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.224997, 41.063927 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436696", "POINTID": "1102654014102", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.224442, 41.071706 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328444915", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.221588, 41.094301 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136307417", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.225131, 41.204457 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047509138", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.230142, 41.607353 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047509145", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.231242, 41.607118 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047509196", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.231738, 41.609944 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047508889", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.229284, 41.615266 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047509145", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.231242, 41.607118 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047508642", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.231282, 41.620393 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047508843", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220928, 41.618450 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047508881", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220902, 41.615328 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452886", "POINTID": "1102653962492", "FULLNAME": "Scottsdale Mall", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.231392, 41.627824 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047503204", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.226561, 41.625107 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047503211", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.227020, 41.623535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047501439", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.230775, 41.639569 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047501577", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.226196, 41.637280 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047502348", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.222543, 41.634195 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047502351", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.222540, 41.631731 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344788580", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.226427, 41.642664 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047500620", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.221162, 41.649132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047469856", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.225477, 41.695211 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047471042", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220735, 41.690358 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047471016", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220631, 41.691349 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015650839666", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.225614, 41.701483 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103731226381", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.230914, 41.720467 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103731226354", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.227387, 41.717664 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01867273", "POINTID": "1102653980576", "FULLNAME": "Georgetown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.228339, 41.729491 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732872355", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.223139, 41.726615 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732872708", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.225376, 41.738619 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732872649", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.225687, 41.734884 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732701197", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220808, 41.746794 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732876286", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.228404, 41.740394 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732876327", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.224847, 41.740608 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015922280603", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.230362, 41.751380 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015672963014", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.226274, 41.749485 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047442984", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.224270, 41.749493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442500", "POINTID": "1102654018870", "FULLNAME": "Saint Bernards Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.214695, 38.306452 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434836", "POINTID": "1102653980018", "FULLNAME": "Frenchtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.214419, 38.314785 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443207", "POINTID": "1102653954599", "FULLNAME": "Seigs Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.219976, 38.317285 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433484", "POINTID": "1102653975669", "FULLNAME": "Depauw", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.217474, 38.335063 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443105", "POINTID": "1102653954491", "FULLNAME": "Schoolhouse Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.216087, 38.344784 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430012", "POINTID": "1102653950545", "FULLNAME": "Adams Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.219142, 38.382282 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435987", "POINTID": "1102653952547", "FULLNAME": "Heiser Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.211643, 38.385617 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435667", "POINTID": "1102653952366", "FULLNAME": "Hancock Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.215532, 38.402004 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435667", "POINTID": "1102653952366", "FULLNAME": "Hancock Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.215532, 38.402004 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12578 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435612", "POINTID": "1102654013057", "FULLNAME": "Hall Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.215535, 38.528113 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442302", "POINTID": "1102653997021", "FULLNAME": "Rosebud", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.211924, 38.527280 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12566 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443654", "POINTID": "1102653998612", "FULLNAME": "Smedley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.215813, 38.633110 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944368516", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.214134, 38.631604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438896", "POINTID": "1102653990031", "FULLNAME": "McKinley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.210634, 38.744662 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12552 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444699", "POINTID": "1102654020876", "FULLNAME": "Thompson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.213024, 38.753075 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12542 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445630", "POINTID": "1102654002151", "FULLNAME": "Weddleville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.220261, 38.838665 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436230", "POINTID": "1102654013618", "FULLNAME": "Hinderlider Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.210261, 38.832554 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450782", "POINTID": "1102653973055", "FULLNAME": "Clear Spring", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.209985, 38.925052 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450699", "POINTID": "1102654008146", "FULLNAME": "Bower Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.211651, 38.958107 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451514", "POINTID": "1102653999660", "FULLNAME": "Story", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.213877, 39.098938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445634", "POINTID": "1102653955355", "FULLNAME": "Weed Patch Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.217487, 39.166992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12493 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430655", "POINTID": "1102653950878", "FULLNAME": "Bearwallow Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.216379, 39.250881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436008", "POINTID": "1102654013392", "FULLNAME": "Henderson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.214150, 39.503935 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436008", "POINTID": "1102654013392", "FULLNAME": "Henderson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.214150, 39.503935 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476487018", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.213434, 39.542377 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476487022", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.211989, 39.540668 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439190", "POINTID": "1102654016087", "FULLNAME": "Miller Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.210261, 39.549489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431260", "POINTID": "1102653968645", "FULLNAME": "Bluff Creek", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.220802, 39.557551 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046964996", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.210395, 39.571659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046964997", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.210457, 39.573749 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046964996", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.210395, 39.571659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113561585", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.217047, 39.585739 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051950907", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.212021, 39.587474 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051949763", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.219896, 39.599040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046852067", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.214459, 39.610303 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046852066", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209516, 39.608029 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105013806128", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.217699, 39.653414 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977513956", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209722, 39.650137 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105013806131", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.218785, 39.656815 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105013806125", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.211959, 39.661420 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444433", "POINTID": "1102654000011", "FULLNAME": "Sunshine Gardens", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.211095, 39.688101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438770", "POINTID": "1102653989880", "FULLNAME": "Maywood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.215819, 39.726156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292745", "FULLNAME": "Allison Plant 8 Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.210390, 39.741749 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439588", "POINTID": "1102654016411", "FULLNAME": "Mount Jackson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.217206, 39.769212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449423", "POINTID": "1102653957446", "FULLNAME": "Eagledale Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.219480, 39.805068 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449491", "POINTID": "1102653979091", "FULLNAME": "Flackville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.220818, 39.809764 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096283", "POINTID": "1102654021742", "FULLNAME": "West Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.216385, 39.809167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105078785870", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220684, 39.824746 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066747595", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209733, 39.821402 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446260", "POINTID": "1102654003209", "FULLNAME": "Wolfington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.216374, 39.830598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051996382", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.210130, 39.837306 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319714794", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220523, 39.849170 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431548", "POINTID": "1102653969719", "FULLNAME": "Broadmoor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.214153, 39.848931 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051996075", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209658, 39.843246 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014162718", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.219534, 39.857800 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014171528", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.215993, 39.874854 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977483272", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.216570, 39.869552 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014171524", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.211710, 39.873545 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977480773", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.211012, 39.877438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319719943", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220102, 39.892619 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430342", "POINTID": "1102653966006", "FULLNAME": "Augusta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.212209, 39.890040 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449411", "POINTID": "1102653955844", "FULLNAME": "Augusta Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.209709, 39.886430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319719941", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220424, 39.894522 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104689809591", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.210175, 39.899592 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102313416537", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.215642, 39.906516 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102176993371", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.213123, 39.902467 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051980359", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.217423, 39.922859 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051977736", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.210178, 39.924873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977705012", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.219158, 39.932210 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104979190293", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.211857, 39.929404 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104979190295", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209534, 39.929694 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977533395", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.219665, 39.943391 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977533628", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.211860, 39.941958 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977533395", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.219665, 39.943391 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052048895", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.219518, 39.964098 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813361803", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.212777, 39.964117 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066292786", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.215379, 39.975048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052602218", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.217533, 39.981742 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105579936769", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.213550, 39.983093 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105579936820", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209569, 39.979556 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813336837", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220553, 39.992747 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105579934624", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.215395, 39.988808 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813337008", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.218182, 39.994761 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813336596", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.215127, 39.996438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443361", "POINTID": "1102653998268", "FULLNAME": "Sheridan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.220545, 40.135037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292251", "FULLNAME": "Sheridan Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.216020, 40.177357 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445790", "POINTID": "1102654002390", "FULLNAME": "West Middleton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.216100, 40.439480 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066537727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.211747, 40.474763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292296", "FULLNAME": "Hartman Farms Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.213716, 40.520858 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12331 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437904", "POINTID": "1102653988027", "FULLNAME": "Lincoln", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.209990, 40.615594 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438041", "POINTID": "1102654015064", "FULLNAME": "Little Deer Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.209714, 40.694761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431415", "POINTID": "1102654008223", "FULLNAME": "Bowyer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.219434, 40.728094 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437807", "POINTID": "1102653987786", "FULLNAME": "Lewisburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.217493, 40.746704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535076619", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.219362, 40.748870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439542", "POINTID": "1102654016354", "FULLNAME": "Mount Carmel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.209717, 40.866150 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442186", "POINTID": "1102653996788", "FULLNAME": "Rochester", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.215830, 41.064760 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328446957", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.212946, 41.072119 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442981", "POINTID": "1102654019268", "FULLNAME": "Sand Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.220277, 41.120038 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445403", "POINTID": "1102654001775", "FULLNAME": "Walnut", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.211943, 41.176153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452826", "POINTID": "1102654021293", "FULLNAME": "Van Buskirk Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.216114, 41.593381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047508881", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220902, 41.615328 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047508888", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220258, 41.613543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047508881", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220902, 41.615328 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047509003", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.213598, 41.616313 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047501484", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.219939, 41.642095 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052190822", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.214800, 41.641981 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047472848", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209548, 41.677624 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047471075", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220317, 41.689318 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452696", "POINTID": "1102653960942", "FULLNAME": "Morris Park Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.211948, 41.681436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047471042", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220735, 41.690358 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047471016", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220631, 41.691349 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047471075", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220317, 41.689318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452680", "POINTID": "1102653989238", "FULLNAME": "Maple Lane", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.216951, 41.700047 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047447526", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.218957, 41.738625 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311499984", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.212968, 41.738653 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732872889", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220314, 41.734962 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311500072", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.214159, 41.735991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732701197", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220808, 41.746794 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047447526", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.218957, 41.738625 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311499984", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.212968, 41.738653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732701197", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.220808, 41.746794 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732701076", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.218378, 41.751707 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015922287707", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.213737, 41.750708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732701364", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.216704, 41.759224 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732702562", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.213496, 41.754822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438737", "POINTID": "1102653989721", "FULLNAME": "Mauckport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.201914, 38.024790 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12623 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431186", "POINTID": "1102654007782", "FULLNAME": "Bliss Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.207193, 38.135065 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444919", "POINTID": "1102654021056", "FULLNAME": "Trout Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.205803, 38.208121 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439302", "POINTID": "1102653990962", "FULLNAME": "Moberly", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.209416, 38.269787 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436038", "POINTID": "1102653952563", "FULLNAME": "Henry Ott Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.199417, 38.313951 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430458", "POINTID": "1102653950756", "FULLNAME": "Ball Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.205382, 38.400669 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446018", "POINTID": "1102653955380", "FULLNAME": "Wildcat Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.200533, 38.411172 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439400", "POINTID": "1102653953569", "FULLNAME": "Moore Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.200729, 38.421686 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944368553", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.206989, 38.621500 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12566 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944368537", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.206627, 38.631673 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12565 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440598", "POINTID": "1102654017342", "FULLNAME": "Old Smedley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.208314, 38.637556 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12560 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441627", "POINTID": "1102653995767", "FULLNAME": "Prowsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.201665, 38.680043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443434", "POINTID": "1102654019725", "FULLNAME": "Shoemaker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.208212, 38.827196 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452188", "POINTID": "1102653995260", "FULLNAME": "Pleasantville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.204199, 38.861196 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451126", "POINTID": "1102653986605", "FULLNAME": "Kurtz", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.203317, 38.960608 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451561", "POINTID": "1102654020882", "FULLNAME": "Thompson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.200820, 39.004495 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110101144951", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.204524, 39.197299 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110101159272", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.198878, 39.195424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432151", "POINTID": "1102654009341", "FULLNAME": "Carmen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.205541, 39.495046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046734879", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.200503, 39.534185 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476487024", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.207225, 39.541539 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113562630", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.205455, 39.563268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046960585", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.207847, 39.570788 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046960583", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.204157, 39.570989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052582298", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.205626, 39.578177 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046960587", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.202486, 39.574479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046958022", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.205817, 39.585059 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046957601", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.202547, 39.585148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046852244", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.202161, 39.597380 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047019456", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.207338, 39.590227 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046852243", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.205637, 39.598472 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046852244", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.202161, 39.597380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046849869", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209475, 39.612954 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046850070", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.203797, 39.612890 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045859902", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.205267, 39.622010 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046039359", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.208617, 39.628420 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046039126", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.205238, 39.622869 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046039192", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.199296, 39.623169 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052106783", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.202445, 39.656499 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977513956", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209722, 39.650137 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977514701", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.204902, 39.652481 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977519717", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.200597, 39.655851 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104991570297", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.203516, 39.659041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104991534573", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.203679, 39.670653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104991534477", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.205350, 39.673837 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292754", "FULLNAME": "Allsion Plant 5 Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.206788, 39.732194 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439587", "POINTID": "1102653991682", "FULLNAME": "Mt Jackson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.206651, 39.765321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00448345", "POINTID": "1102653980857", "FULLNAME": "Glendale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.202762, 39.788100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01964542", "POINTID": "1102653962583", "FULLNAME": "Soap Box Derby Racetrack", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.199412, 39.810796 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066747595", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209733, 39.821402 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00448351", "POINTID": "1102653969823", "FULLNAME": "Brooklyn Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.209151, 39.820321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066770447", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.207544, 39.827465 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051996379", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.208220, 39.839465 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051996075", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209658, 39.843246 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435105", "POINTID": "1102654012555", "FULLNAME": "Glen Haven Memorial Pk", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.206096, 39.856987 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452288", "POINTID": "1102653956140", "FULLNAME": "Broadmoor Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.201222, 39.851495 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449412", "POINTID": "1102653963617", "FULLNAME": "Westlane Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.208319, 39.867264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977479814", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209001, 39.874243 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449413", "POINTID": "1102653955813", "FULLNAME": "Ary-Way Northwest Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.205541, 39.881153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449411", "POINTID": "1102653955844", "FULLNAME": "Augusta Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.209709, 39.886430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445829", "POINTID": "1102654002486", "FULLNAME": "Westchester Estates", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.207764, 39.897263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051977782", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209132, 39.926235 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104979190295", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209534, 39.929694 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977533627", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.208665, 39.941878 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977533593", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.203966, 39.938295 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977544999", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.206297, 39.959180 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105580091490", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.203752, 39.956662 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977545000", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.206289, 39.960788 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105580091489", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.198741, 39.961937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052052740", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209049, 39.970678 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105579936820", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209569, 39.979556 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105579947305", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.203553, 39.979541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977530486", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.207625, 39.994081 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105579931284", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.204755, 39.990970 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977514323", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.199664, 39.988765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813336494", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.206890, 39.998357 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017129118039", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.204124, 40.021001 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438236", "POINTID": "1102653987112", "FULLNAME": "Lamong", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.203320, 40.085593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445126", "POINTID": "1102654021237", "FULLNAME": "Union Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.203320, 40.105592 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12388 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446027", "POINTID": "1102654021982", "FULLNAME": "Wiles Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.200509, 40.144201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435519", "POINTID": "1102653981842", "FULLNAME": "Groomsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.202767, 40.345870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292336", "FULLNAME": "Glenndale Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.201718, 40.425822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535075095", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.202137, 40.586747 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438041", "POINTID": "1102654015064", "FULLNAME": "Little Deer Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.209714, 40.694761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535076592", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.207340, 40.753855 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12308 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436418", "POINTID": "1102653984230", "FULLNAME": "Hoover", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.200549, 40.808927 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446699", "POINTID": "1102653988221", "FULLNAME": "Little Charlie", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.201936, 40.825038 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439542", "POINTID": "1102654016354", "FULLNAME": "Mount Carmel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.209717, 40.866150 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328452183", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.203505, 41.037498 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328447817", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.200294, 41.055855 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328449071", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.204350, 41.080663 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444774", "POINTID": "1102654000669", "FULLNAME": "Tiosa", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.205554, 41.152818 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12249 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442880", "POINTID": "1102654019235", "FULLNAME": "Salem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.201944, 41.295597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436821", "POINTID": "1102653985043", "FULLNAME": "Inwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.203057, 41.317543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452688", "POINTID": "1102653990592", "FULLNAME": "Midway Cors", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.202225, 41.520879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047509033", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.207635, 41.614209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047509027", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.207381, 41.615873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732643929", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.205173, 41.626593 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732643775", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.198961, 41.628916 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259593686", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.206839, 41.637605 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491344", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.200120, 41.671790 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047472847", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209390, 41.678245 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504157114", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.198696, 41.704719 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732869685", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.208057, 41.737678 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732870001", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209250, 41.732410 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732869807", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.203572, 41.734417 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732867012", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.206820, 41.741004 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732702589", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209041, 41.753419 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732702776", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.203419, 41.754904 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732702050", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209137, 41.759978 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732702831", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.200517, 41.756371 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732702776", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.203419, 41.754904 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12631 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435920", "POINTID": "1102653952482", "FULLNAME": "Hayes Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.196915, 38.070344 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12623 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446171", "POINTID": "1102653955443", "FULLNAME": "Windell Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.191915, 38.135067 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438618", "POINTID": "1102653953352", "FULLNAME": "Marion Herthel Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.191362, 38.333672 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431368", "POINTID": "1102654008115", "FULLNAME": "Boston Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.192476, 38.391171 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442159", "POINTID": "1102653954271", "FULLNAME": "Roberts Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.195531, 38.397005 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441900", "POINTID": "1102653954210", "FULLNAME": "Reno Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.192755, 38.405892 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434794", "POINTID": "1102653979877", "FULLNAME": "Fredericksburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.189699, 38.433115 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12586 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109073335967", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.190370, 38.460148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12585 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109073335010", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.191196, 38.463005 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441414", "POINTID": "1102654018008", "FULLNAME": "Pollock Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.189426, 38.765053 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450825", "POINTID": "1102654011047", "FULLNAME": "Cummings Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.196842, 38.968942 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451069", "POINTID": "1102653984335", "FULLNAME": "Houston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.190818, 39.016439 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451073", "POINTID": "1102653952795", "FULLNAME": "Hurley Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.196378, 39.096716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432060", "POINTID": "1102653971259", "FULLNAME": "Camp Roberts", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.193599, 39.178381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433330", "POINTID": "1102654011139", "FULLNAME": "David Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.195823, 39.184770 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110101159272", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.198878, 39.195424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443925", "POINTID": "1102653999069", "FULLNAME": "Spearsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.196378, 39.330602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113564687", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.187886, 39.359337 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430180", "POINTID": "1102653965119", "FULLNAME": "Anita", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.191373, 39.425880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443385", "POINTID": "1102654019669", "FULLNAME": "Shiloh Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.196928, 39.456990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435779", "POINTID": "1102654013177", "FULLNAME": "Harris Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.188318, 39.476991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433417", "POINTID": "1102654011184", "FULLNAME": "Deer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.194707, 39.487824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445559", "POINTID": "1102654021581", "FULLNAME": "Watts Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.188039, 39.499212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476491874", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.198097, 39.533689 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437313", "POINTID": "1102653986057", "FULLNAME": "Kinder", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.197207, 39.543934 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046750003", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.191344, 39.545334 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046749927", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.190075, 39.555007 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046749929", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.192626, 39.554248 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046749998", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.189096, 39.546956 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445540", "POINTID": "1102654001928", "FULLNAME": "Waterloo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.197483, 39.562545 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046723185", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.190890, 39.561825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442937", "POINTID": "1102653954370", "FULLNAME": "Sally Doty Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.198889, 39.571388 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046960588", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.197816, 39.571678 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113562584", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.196035, 39.566777 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046749877", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.198347, 39.572899 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046749667", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.187945, 39.577859 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046960547", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.189206, 39.572988 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046960588", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.197816, 39.571678 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046749669", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.195745, 39.583089 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046749644", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.188356, 39.582899 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046852373", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.195096, 39.594148 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046852374", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.192966, 39.594028 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259495979", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.188015, 39.589669 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046038560", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.190705, 39.588689 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449732", "POINTID": "1102653998624", "FULLNAME": "Smith Vly", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.196928, 39.605322 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046852306", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.190987, 39.601588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046851337", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.197977, 39.610249 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046851326", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.194216, 39.608949 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046850076", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.197046, 39.620379 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046850459", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.194806, 39.614989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439652", "POINTID": "1102654016473", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.196649, 39.628379 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045859980", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.187615, 39.630269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435120", "POINTID": "1102653980932", "FULLNAME": "Glenns Vly", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.196373, 39.641989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066759206", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.193489, 39.656454 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445901", "POINTID": "1102654021830", "FULLNAME": "Whiley Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.189705, 39.665044 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104991569600", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.189970, 39.663053 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104979694521", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.189128, 39.658794 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066759206", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.193489, 39.656454 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445901", "POINTID": "1102654021830", "FULLNAME": "Whiley Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.189705, 39.665044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432079", "POINTID": "1102654009232", "FULLNAME": "Campbell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.190762, 39.678271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430754", "POINTID": "1102654007320", "FULLNAME": "Bell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.192484, 39.685878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00448343", "POINTID": "1102653967543", "FULLNAME": "Belmont", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.194983, 39.752267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446358", "POINTID": "1102654003387", "FULLNAME": "Wynnedale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.197483, 39.831154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104989151771", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.195914, 39.837838 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435300", "POINTID": "1102653981239", "FULLNAME": "Grandview", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.195818, 39.870319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013528", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.193865, 39.878920 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013529", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.191585, 39.877868 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051996838", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.198151, 39.892684 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436316", "POINTID": "1102653984020", "FULLNAME": "Holida", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.189986, 39.886430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051996827", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.197754, 39.895672 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012812891791", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.191894, 39.896502 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292697", "FULLNAME": "St Vincent Indianapolis Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.193455, 39.907957 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051997581", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.195764, 39.921545 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379842", "FULLNAME": "Crooked Stick Golf Course", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -86.193409, 39.950520 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105580091489", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.198741, 39.961937 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066294574", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.195713, 39.965426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015484713778", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.191301, 39.971648 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977514322", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.196359, 39.991358 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052016806", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.190569, 39.988724 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977514321", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.187709, 39.988956 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013845932212", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.193766, 40.008275 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433857", "POINTID": "1102653976656", "FULLNAME": "Eagletown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.193597, 40.042261 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441991", "POINTID": "1102654018533", "FULLNAME": "Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.195265, 40.209202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066542246", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.191507, 40.478231 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538892", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.189555, 40.481779 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12336 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452043", "POINTID": "1102653980230", "FULLNAME": "Galveston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.190268, 40.578926 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438934", "POINTID": "1102654015860", "FULLNAME": "McWilliams Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.189158, 40.602814 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440664", "POINTID": "1102653994033", "FULLNAME": "Onward", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.194991, 40.694761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440124", "POINTID": "1102653992950", "FULLNAME": "New Waverly", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.192492, 40.764206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12284 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440595", "POINTID": "1102654017332", "FULLNAME": "Old Shelton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.192218, 41.010593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12280 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431037", "POINTID": "1102653968003", "FULLNAME": "Big Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.195828, 41.045317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328439837", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.195024, 41.052862 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328767211", "FULLNAME": "Woodlawn Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.195638, 41.063399 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292677", "FULLNAME": "Scott Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.188444, 41.256140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292530", "FULLNAME": "Hackbarth Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.198170, 41.489754 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732643784", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.198739, 41.628146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019627578795", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.188130, 41.689396 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452889", "POINTID": "1102653960473", "FULLNAME": "McKinley Town and County Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.191910, 41.683642 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344853142", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.188179, 41.690298 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504147057", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.196088, 41.705887 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504157114", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.198696, 41.704719 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504147039", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.192588, 41.704958 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504147057", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.196088, 41.705887 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344845819", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.190807, 41.708067 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452888", "POINTID": "1102653963238", "FULLNAME": "University Park Mall", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.189450, 41.719492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052122349", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.194635, 41.742689 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052122348", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.190485, 41.744785 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047442304", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.193414, 41.748581 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292518", "FULLNAME": "C V Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.190949, 41.749479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732703787", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.197937, 41.758844 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732703684", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.191228, 41.758584 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732704056", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.187690, 41.757411 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12633 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435128", "POINTID": "1102653980962", "FULLNAME": "Glidas", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.184413, 38.056734 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12632 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435128", "POINTID": "1102653980962", "FULLNAME": "Glidas", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.184413, 38.056734 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12630 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444808", "POINTID": "1102653953706", "FULLNAME": "Mt Tom", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.182192, 38.082291 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434291", "POINTID": "1102654011780", "FULLNAME": "Fairdale Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.186918, 38.327006 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435663", "POINTID": "1102653982203", "FULLNAME": "Hancock Chapel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.179419, 38.381727 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441899", "POINTID": "1102654018421", "FULLNAME": "Reno Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.186087, 38.399504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437624", "POINTID": "1102654014815", "FULLNAME": "Lanning Sput Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.180816, 38.823665 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437406", "POINTID": "1102653959662", "FULLNAME": "Knobs Overlook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.179199, 38.874156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450643", "POINTID": "1102654006853", "FULLNAME": "Bagwell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.181095, 38.951719 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451185", "POINTID": "1102654015317", "FULLNAME": "Lutes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.176653, 39.031994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443202", "POINTID": "1102653954558", "FULLNAME": "Seelmaer Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.180821, 39.160882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433197", "POINTID": "1102654010956", "FULLNAME": "Crouch Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.181377, 39.191158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431995", "POINTID": "1102654009205", "FULLNAME": "Calvin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.184711, 39.338658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113564687", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.187886, 39.359337 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113564693", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.182997, 39.359298 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010976281504", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.179191, 39.353947 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442947", "POINTID": "1102653997552", "FULLNAME": "Samaria", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.186368, 39.403933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444974", "POINTID": "1102653955217", "FULLNAME": "Turkey Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.185539, 39.483934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441616", "POINTID": "1102653995758", "FULLNAME": "Providence", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.176651, 39.490879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443530", "POINTID": "1102654019843", "FULLNAME": "Simpson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.186374, 39.498378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015650120821", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.183112, 39.539874 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046750569", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.184214, 39.548548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046723184", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.186494, 39.557588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113579246", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.187905, 39.571049 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046750337", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.187913, 39.564201 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259629720", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.183726, 39.570348 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046749667", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.187945, 39.577859 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046749666", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.185515, 39.577898 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259628893", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.183327, 39.572199 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046749645", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.187186, 39.583058 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046038757", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.179655, 39.588718 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046038630", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.183155, 39.593329 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046038757", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.179655, 39.588718 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046038752", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176726, 39.589468 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471588398", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.186905, 39.604729 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046851324", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.185526, 39.610699 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045859934", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.186497, 39.622309 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046039423", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.187285, 39.615820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045859992", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.178587, 39.631180 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045860015", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.178826, 39.631930 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045859991", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.179166, 39.631029 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104975975085", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.182801, 39.646640 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104975975008", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.181065, 39.646101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105013813787", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.187055, 39.653202 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104989357423", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176546, 39.652939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104991565200", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.186317, 39.663206 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052151467", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.179856, 39.664559 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105013813804", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176731, 39.660747 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096254", "POINTID": "1102654006972", "FULLNAME": "Banta Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.179995, 39.670833 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052151475", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.179716, 39.665715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316564657", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.178295, 39.735147 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052110715", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.185099, 39.744358 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292637", "FULLNAME": "Medical Ctr", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.185735, 39.779492 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292716", "FULLNAME": "J W Riley Hospital for Children", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.180727, 39.776814 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00448346", "POINTID": "1102653993303", "FULLNAME": "North Indianapolis", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.178040, 39.807821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00448347", "POINTID": "1102653973121", "FULLNAME": "Clifton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.183040, 39.816153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452418", "POINTID": "1102653963824", "FULLNAME": "Woodstock Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.187355, 39.822925 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02060058", "POINTID": "1102654011021", "FULLNAME": "Crown Hill National Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.180060, 39.824787 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446318", "POINTID": "1102654003312", "FULLNAME": "Woodstock", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.184697, 39.827568 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066745071", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.183514, 39.842317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436177", "POINTID": "1102653983604", "FULLNAME": "Highwoods", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.183318, 39.844210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066772338", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.182702, 39.861654 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013552", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.179848, 39.876100 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013522", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.185765, 39.875334 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259252501", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.184931, 39.877643 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433454", "POINTID": "1102653975472", "FULLNAME": "Delaware Trails", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.181374, 39.880041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014590", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.184705, 39.891633 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014953", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.181723, 39.889818 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012812891773", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.182913, 39.894471 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066774989", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.179797, 39.895195 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102177076893", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.178896, 39.908448 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449414", "POINTID": "1102653961294", "FULLNAME": "Northbrook Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.185263, 39.910596 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262863081", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.180231, 39.914417 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051997587", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.185349, 39.920948 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051997875", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.181846, 39.918992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259213118", "FULLNAME": "Laurel Ridge Lane", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.182187, 39.940522 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977722300", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.187508, 39.946126 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977722298", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.186049, 39.953812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977522011", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.184421, 39.970859 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066284995", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.187304, 39.991387 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259101564", "FULLNAME": "Kingsgate Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.178300, 39.992708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977514064", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.182637, 39.994219 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977514066", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.180910, 39.996267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104689750056", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.183112, 40.003498 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104689750068", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.181425, 40.003504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311381360", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.182498, 40.024581 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977608032", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176667, 40.033244 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977608011", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176940, 40.038875 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977608031", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176570, 40.036484 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538552", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.181159, 40.478535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066540913", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.182474, 40.502501 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066540942", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.182227, 40.499985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12337 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438965", "POINTID": "1102654015896", "FULLNAME": "Meeks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.178045, 40.571704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12336 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110535067525", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.185470, 40.574165 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12286 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435409", "POINTID": "1102653981541", "FULLNAME": "Green Oak", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.184161, 40.996427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12285 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435409", "POINTID": "1102653981541", "FULLNAME": "Green Oak", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.184161, 40.996427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292201", "FULLNAME": "Fulton County Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.181690, 41.065522 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452840", "POINTID": "1102654003248", "FULLNAME": "Woodland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.177225, 41.564490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452625", "POINTID": "1102653983887", "FULLNAME": "Hi-View Addition", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.178335, 41.608379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732646720", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.182763, 41.623441 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344795081", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.186722, 41.645043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452772", "POINTID": "1102654019043", "FULLNAME": "Saint Josephs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.186113, 41.672547 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452773", "POINTID": "1102654019044", "FULLNAME": "Saint Josephs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.185837, 41.675602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452887", "POINTID": "1102653963218", "FULLNAME": "University Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.187782, 41.683381 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052128654", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.185593, 41.686726 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052128655", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176962, 41.687273 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344853269", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176642, 41.685543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732864439", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.184708, 41.728733 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732865227", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.187167, 41.735020 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047441555", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.181229, 41.746590 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732862556", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176659, 41.739179 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732704313", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.180921, 41.754570 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047441555", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.181229, 41.746590 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732704056", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.187690, 41.757411 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732704571", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176691, 41.759976 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442974", "POINTID": "1102653954417", "FULLNAME": "Sand Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.168303, 38.107566 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12625 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436210", "POINTID": "1102654013594", "FULLNAME": "Hillgrove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.175248, 38.125066 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438715", "POINTID": "1102653953372", "FULLNAME": "Mathes Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.173027, 38.169511 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443037", "POINTID": "1102654019321", "FULLNAME": "Satenfield Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.173030, 38.330897 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434290", "POINTID": "1102653978223", "FULLNAME": "Fairdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.171085, 38.326173 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01923632", "POINTID": "1102654014353", "FULLNAME": "Kansas Church Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.173032, 38.513115 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119095818", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.167789, 38.593898 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440098", "POINTID": "1102654016780", "FULLNAME": "New Philadelphia Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.176090, 38.625611 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12566 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440098", "POINTID": "1102654016780", "FULLNAME": "New Philadelphia Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.176090, 38.625611 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12565 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452924", "POINTID": "1102653983877", "FULLNAME": "Hitchcock", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.169701, 38.638112 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12558 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442406", "POINTID": "1102653997227", "FULLNAME": "Rush Creek Vly", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.170535, 38.695333 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438962", "POINTID": "1102653990188", "FULLNAME": "Medora", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.169983, 38.825053 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12542 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436336", "POINTID": "1102654013731", "FULLNAME": "Holmes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.176372, 38.832554 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450648", "POINTID": "1102653966384", "FULLNAME": "Bald Knobs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.170540, 39.020051 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451185", "POINTID": "1102654015317", "FULLNAME": "Lutes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.176653, 39.031994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451449", "POINTID": "1102653954628", "FULLNAME": "Shepard Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.174156, 39.112828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432551", "POINTID": "1102654009948", "FULLNAME": "Clark Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.175545, 39.191716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431623", "POINTID": "1102653951139", "FULLNAME": "Brown Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.170267, 39.206993 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103940739864", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.166917, 39.409508 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431757", "POINTID": "1102653970352", "FULLNAME": "Bud", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.175816, 39.446991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441616", "POINTID": "1102653995758", "FULLNAME": "Providence", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.176651, 39.490879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113557611", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.174076, 39.519918 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430487", "POINTID": "1102653966689", "FULLNAME": "Bargersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.167759, 39.520878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113557644", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.173094, 39.525147 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430487", "POINTID": "1102653966689", "FULLNAME": "Bargersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.167759, 39.520878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046038905", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.173335, 39.554188 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046038875", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.170932, 39.550716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046038779", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.173255, 39.561569 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046038780", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.168974, 39.561639 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476142949", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.166088, 39.570088 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046038766", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.175615, 39.578029 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046750273", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.173279, 39.572802 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046958421", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176964, 39.581039 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046994353", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.174435, 39.587439 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046039560", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.171444, 39.597178 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046852541", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165664, 39.589499 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434748", "POINTID": "1102653979796", "FULLNAME": "Frances", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.168776, 39.605761 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046039481", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.171965, 39.602630 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046039438", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.174465, 39.613369 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046039448", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.168904, 39.608079 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046039447", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165766, 39.610429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046850635", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.174365, 39.621359 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045860138", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.175264, 39.630709 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045860224", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.170825, 39.628548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045860016", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176077, 39.633149 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045860185", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.169336, 39.631870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104975975020", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.175639, 39.647341 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066763439", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.166675, 39.643078 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104989358733", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176924, 39.650379 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104989357423", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176546, 39.652939 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066774518", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.170884, 39.655159 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105013813801", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176881, 39.657947 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045182407", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.175862, 39.662415 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052150678", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.166112, 39.673457 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052151250", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.173389, 39.666423 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052150680", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165761, 39.670881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081842948", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.172195, 39.681182 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081842979", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.169245, 39.681219 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052150678", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.166112, 39.673457 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104975996428", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.172032, 39.689238 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319911805", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.172064, 39.690586 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052107296", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.167727, 39.694169 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052107246", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.167802, 39.699622 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431976", "POINTID": "1102654009174", "FULLNAME": "Calvary Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.166093, 39.718657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01964873", "POINTID": "1102653963211", "FULLNAME": "Union Stockyards", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.175816, 39.743100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316563234", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.169253, 39.768265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435355", "POINTID": "1102654012804", "FULLNAME": "Grave of President Harrison", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.175816, 39.819208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00448349", "POINTID": "1102653989309", "FULLNAME": "Mapleton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.167206, 39.828931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442234", "POINTID": "1102653996874", "FULLNAME": "Rocky Ripple", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.172485, 39.848097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433220", "POINTID": "1102653974650", "FULLNAME": "Crows Nest", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.168596, 39.858096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443992", "POINTID": "1102653999215", "FULLNAME": "Spring Mill Estates", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.166928, 39.875597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052000272", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176374, 39.879634 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052012670", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.174105, 39.889764 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319714866", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.166434, 39.918297 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102178367793", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.173126, 39.910384 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449415", "POINTID": "1102653958410", "FULLNAME": "Greenbriar Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.165817, 39.910596 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319714874", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.170181, 39.923585 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319714866", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.166434, 39.918297 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259212871", "FULLNAME": "Cedar Wood", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.173121, 39.931718 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319760840", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.169382, 39.929221 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105317162182", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.172681, 39.938986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813334207", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.173920, 39.959006 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813334282", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.168408, 39.959516 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977603870", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.175457, 39.975638 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102907081158", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.172622, 39.971836 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977603868", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165557, 39.974703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441449", "POINTID": "1102654018039", "FULLNAME": "Poplar Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.174709, 39.982260 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977603745", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.168958, 39.981833 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977603785", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165635, 39.984328 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977603612", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.173325, 39.991325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977602352", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.174819, 40.000042 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977588455", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165696, 39.996598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977603108", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.174953, 40.004757 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977513922", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.167051, 40.006117 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977513924", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.169551, 40.002284 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977601831", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165712, 40.006167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052600215", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.169197, 40.011983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977608032", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176667, 40.033244 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052583833", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.175849, 40.029598 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052564522", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.170031, 40.031375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977608011", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176940, 40.038875 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977608010", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176296, 40.038881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052566929", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.174274, 40.051285 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443946", "POINTID": "1102654020135", "FULLNAME": "Spicewood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.166375, 40.132814 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12387 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444654", "POINTID": "1102654020859", "FULLNAME": "Teter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.167209, 40.151981 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431418", "POINTID": "1102653969110", "FULLNAME": "Boxley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.175543, 40.166148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12368 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440205", "POINTID": "1102654016944", "FULLNAME": "Normanda Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.168877, 40.311147 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262931334", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.172045, 40.437761 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538843", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165873, 40.431124 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538530", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165557, 40.432073 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262931673", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.175832, 40.438792 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499678868", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.171562, 40.459977 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104689799451", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.170219, 40.464162 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066539112", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.167375, 40.486081 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066537189", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.170594, 40.496931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066537189", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.170594, 40.496931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292056", "FULLNAME": "Rockey's Air Strip", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.166214, 40.581414 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12324 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067097290", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165774, 40.677768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438878", "POINTID": "1102654015741", "FULLNAME": "McGrew Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.171941, 41.186985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438878", "POINTID": "1102654015741", "FULLNAME": "McGrew Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.171941, 41.186985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136304523", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.170565, 41.440694 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136304532", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.166898, 41.444928 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452842", "POINTID": "1102654003381", "FULLNAME": "Wyatt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.169446, 41.525879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732646475", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.172855, 41.631248 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047504323", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.166117, 41.638298 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047504165", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.172622, 41.643586 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047503898", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.170143, 41.642716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019640559390", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176541, 41.650423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052128655", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176962, 41.687273 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344853269", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176642, 41.685543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344794061", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.166984, 41.697073 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730614975", "FULLNAME": "Vanderbilt Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.171745, 41.712803 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730610852", "FULLNAME": "Carnegie Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.172348, 41.715736 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047439150", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.174035, 41.730120 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047439122", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.173140, 41.724785 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047439248", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.172525, 41.737884 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732860899", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.173193, 41.742759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732704929", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.170723, 41.755034 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732705036", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.175567, 41.754612 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047441441", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.172922, 41.747730 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047438912", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.168717, 41.746602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732704607", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176795, 41.756633 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732704571", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176691, 41.759976 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432348", "POINTID": "1102653972208", "FULLNAME": "Central", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.158580, 38.099791 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431096", "POINTID": "1102653950977", "FULLNAME": "Binkley Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.158859, 38.164511 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441756", "POINTID": "1102653996037", "FULLNAME": "Ramsey", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.154694, 38.323673 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431472", "POINTID": "1102654008310", "FULLNAME": "Breedlove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.157752, 38.362840 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431669", "POINTID": "1102653951184", "FULLNAME": "Brunner Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.160807, 38.379507 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105560807671", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.157961, 38.403105 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440697", "POINTID": "1102653994111", "FULLNAME": "Organ Springs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.164699, 38.476726 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12577 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430694", "POINTID": "1102654007242", "FULLNAME": "Becks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.157754, 38.536724 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119077196", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.156791, 38.592263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450775", "POINTID": "1102653972721", "FULLNAME": "Christiansburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.156099, 39.088662 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451396", "POINTID": "1102653954254", "FULLNAME": "Risk Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.159154, 39.104218 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444206", "POINTID": "1102653999598", "FULLNAME": "Stone Head", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.158878, 39.130050 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444206", "POINTID": "1102653999598", "FULLNAME": "Stone Head", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.158878, 39.130050 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441872", "POINTID": "1102654018373", "FULLNAME": "Reeves Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.159433, 39.143662 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441207", "POINTID": "1102654017882", "FULLNAME": "Pittman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.162767, 39.177547 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452046", "POINTID": "1102653981006", "FULLNAME": "Gnaw Bone", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.155544, 39.190882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052427856", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.157424, 39.407477 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046073495", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.162266, 39.416338 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103940739824", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.162387, 39.411027 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046073513", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.155804, 39.414747 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046073496", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.162196, 39.420628 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433620", "POINTID": "1102654011370", "FULLNAME": "Dollings Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.156928, 39.448936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445184", "POINTID": "1102654021279", "FULLNAME": "Utterback Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.165259, 39.504490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047021710", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.162051, 39.520970 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047021607", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.159439, 39.520216 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047021533", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.163615, 39.525747 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047021710", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.162051, 39.520970 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046038797", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.160716, 39.554647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046038786", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.164334, 39.562189 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476139642", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.164141, 39.568049 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046750401", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.159656, 39.566868 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046039692", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165375, 39.578279 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444217", "POINTID": "1102653999631", "FULLNAME": "Stones Crossing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.159149, 39.577824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096194", "POINTID": "1102653962358", "FULLNAME": "Royal Oak Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.163328, 39.587775 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046039576", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165476, 39.597248 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046039664", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.159905, 39.597248 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434659", "POINTID": "1102654012091", "FULLNAME": "Forest Lawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.157481, 39.590601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433136", "POINTID": "1102653974470", "FULLNAME": "Critchfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.163315, 39.600323 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046039663", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.159895, 39.597709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046850798", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165147, 39.613509 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046850796", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165375, 39.619458 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113731381", "FULLNAME": "Fairview Fellowhip Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -86.156596, 39.620051 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113563003", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165466, 39.630160 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045860235", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.159286, 39.626210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066763442", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.161751, 39.639624 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113585029", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.162207, 39.632909 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045860234", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.160246, 39.632680 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066763450", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165541, 39.643098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052150677", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.164699, 39.673465 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052150664", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.163816, 39.672786 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052151010", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154603, 39.668554 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052150702", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165101, 39.677666 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052107777", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.155812, 39.680208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442346", "POINTID": "1102654018706", "FULLNAME": "Round Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.158039, 39.687546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432867", "POINTID": "1102654010444", "FULLNAME": "Concordia Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.157205, 39.727544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435959", "POINTID": "1102654013317", "FULLNAME": "Hebrew Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.164149, 39.735323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096805", "POINTID": "1102653960525", "FULLNAME": "Merchants Plaza Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.160273, 39.766113 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452890", "POINTID": "1102653984979", "FULLNAME": "Indianapolis", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.158039, 39.768377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292819", "FULLNAME": "Channel 13 Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.158728, 39.782019 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292666", "FULLNAME": "Methodist Hospital of in Incorporated", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.162145, 39.789412 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440243", "POINTID": "1102653993276", "FULLNAME": "North Crows Nest", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.163317, 39.865875 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452360", "POINTID": "1102653960537", "FULLNAME": "Meridian Hills Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.161373, 39.882540 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439019", "POINTID": "1102653990280", "FULLNAME": "Meridian Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.157207, 39.890040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103692221540", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.162116, 39.899315 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699390769", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.162341, 39.894757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449415", "POINTID": "1102653958410", "FULLNAME": "Greenbriar Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.165817, 39.910596 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443996", "POINTID": "1102653999235", "FULLNAME": "Spring Mill Woods", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.164707, 39.915595 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319761093", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154895, 39.917367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319760839", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.163494, 39.925712 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319714858", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.160992, 39.918344 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109093930044", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -86.165077, 39.941542 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109093930009", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -86.158315, 39.941621 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977722277", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.162628, 39.946969 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259108008", "FULLNAME": "Penn Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154847, 39.944878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011367835377", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.161362, 39.965578 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977603868", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165557, 39.974703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977603785", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165635, 39.984328 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977603739", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.158932, 39.981549 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259096533", "FULLNAME": "Bentley Way", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154707, 39.984599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977588490", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.163881, 39.991767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977588455", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165696, 39.996598 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977588480", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.157076, 39.998961 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052043452", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154705, 40.001842 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066290753", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.163999, 40.009265 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296194004", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154831, 40.002958 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259071063", "FULLNAME": "Count Fleet Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154651, 40.009891 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066290760", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.162816, 40.012437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013845383699", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.162459, 40.030013 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977537158", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.156405, 40.028984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292242", "FULLNAME": "Westfield Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.156486, 40.048359 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436500", "POINTID": "1102653984329", "FULLNAME": "Hortonville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.160817, 40.086149 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066290161", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.163604, 40.175025 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434057", "POINTID": "1102653977334", "FULLNAME": "Ekin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.161654, 40.216980 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443642", "POINTID": "1102654019908", "FULLNAME": "Small Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.157765, 40.220314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12369 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440204", "POINTID": "1102653993222", "FULLNAME": "Normanda", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.164709, 40.302536 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538965", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.156285, 40.410537 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538954", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.155839, 40.406193 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538984", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.155989, 40.419941 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538997", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.163548, 40.428870 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538987", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.159511, 40.423643 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538843", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165873, 40.431124 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538971", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.163374, 40.433470 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430122", "POINTID": "1102653964745", "FULLNAME": "Alto", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.165543, 40.440035 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444428", "POINTID": "1102654020603", "FULLNAME": "Sunset Memory Gdns", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.158323, 40.439202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499677025", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.160673, 40.480186 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499677003", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.160769, 40.481952 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538836", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.157132, 40.501243 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433432", "POINTID": "1102654011186", "FULLNAME": "Deer Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.155823, 40.605038 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067097343", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154740, 40.672253 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12324 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067097290", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165774, 40.677768 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067097315", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.163585, 40.673622 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067098193", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.159817, 40.674554 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067097343", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154740, 40.672253 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12292 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434539", "POINTID": "1102654012001", "FULLNAME": "Five Corners Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.159439, 40.945593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441887", "POINTID": "1102654018380", "FULLNAME": "Reister Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.159718, 41.135595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136299735", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.160394, 41.440738 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292644", "FULLNAME": "Bremen Community Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.158374, 41.456862 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047506194", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.160809, 41.624532 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047504399", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.164146, 41.638230 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110345007187", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.161780, 41.633595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047503686", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.164964, 41.648214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047503686", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.164964, 41.648214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452691", "POINTID": "1102653990934", "FULLNAME": "Mishawaka", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.158613, 41.661992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104417809870", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.161300, 41.692659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344906301", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.164607, 41.720539 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732333262", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.156950, 41.719748 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735239276", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.157974, 41.746764 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047438970", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.160099, 41.745415 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015501851676", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.165924, 41.754510 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732705720", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.161850, 41.751867 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735239263", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.156338, 41.746720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12614 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449049", "POINTID": "1102653953909", "FULLNAME": "Pilot Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.144968, 38.215344 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12613 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112395608", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.153345, 38.226809 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441756", "POINTID": "1102653996037", "FULLNAME": "Ramsey", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.154694, 38.323673 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019665352016", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.145532, 38.418820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017128760277", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.143600, 38.431377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12579 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443666", "POINTID": "1102654019964", "FULLNAME": "Smith-Miller Pioneer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.153865, 38.515614 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12558 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433049", "POINTID": "1102654010742", "FULLNAME": "Covenanter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.147758, 38.697832 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435601", "POINTID": "1102653982107", "FULLNAME": "Haleysbury", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.150813, 38.741999 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445883", "POINTID": "1102654021803", "FULLNAME": "Wheeler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.153871, 38.757831 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446495", "POINTID": "1102654022422", "FULLNAME": "Zollman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.153036, 38.854775 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451209", "POINTID": "1102654015794", "FULLNAME": "McKinney Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.153876, 39.056440 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452118", "POINTID": "1102653970470", "FULLNAME": "Buffalo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.144984, 39.056715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450769", "POINTID": "1102653951339", "FULLNAME": "Cherry Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.154431, 39.074217 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451502", "POINTID": "1102653999319", "FULLNAME": "Spurgeons Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.144984, 39.070883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451276", "POINTID": "1102653953771", "FULLNAME": "Nickerson Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.145545, 39.116995 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443950", "POINTID": "1102654020145", "FULLNAME": "Spiker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.151931, 39.153104 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433673", "POINTID": "1102653951758", "FULLNAME": "Downey Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.147211, 39.175603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434995", "POINTID": "1102653980415", "FULLNAME": "Gatesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.146379, 39.261714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446475", "POINTID": "1102653955535", "FULLNAME": "Zion Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.151934, 39.271991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446472", "POINTID": "1102654022406", "FULLNAME": "Zion Church", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.154158, 39.275880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433771", "POINTID": "1102654011440", "FULLNAME": "Duncan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.153876, 39.335046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441007", "POINTID": "1102653994692", "FULLNAME": "Peoga", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.144153, 39.343101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472651095", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.153970, 39.408638 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444851", "POINTID": "1102654000838", "FULLNAME": "Trafalgar", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.150818, 39.416158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292393", "FULLNAME": "Kephart Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.149233, 39.484694 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435079", "POINTID": "1102654012513", "FULLNAME": "Gilmore Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.147758, 39.510601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430488", "POINTID": "1102654006995", "FULLNAME": "Bargersville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.153892, 39.519203 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046718837", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.143592, 39.578634 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113585357", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.153484, 39.585789 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047018729", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.143970, 39.586068 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476143713", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.148882, 39.593383 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471589278", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.143826, 39.605110 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113530065", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.151596, 39.608470 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436016", "POINTID": "1102653983187", "FULLNAME": "Hendricks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.148316, 39.608102 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113585602", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154286, 39.620989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113549457", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154356, 39.622950 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113549500", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.146095, 39.627269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052152475", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.148340, 39.639333 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047022302", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.148066, 39.631279 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296192679", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154211, 39.647989 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052152501", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.150520, 39.642051 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296192753", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.143705, 39.643916 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296192679", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154211, 39.647989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437952", "POINTID": "1102653988126", "FULLNAME": "Lindenwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.154149, 39.658655 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052151017", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154313, 39.670614 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052107778", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.153833, 39.680905 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052107904", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.147849, 39.680732 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443877", "POINTID": "1102653962701", "FULLNAME": "Southern Plaza Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.152771, 39.704168 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452263", "POINTID": "1102653955888", "FULLNAME": "Ayr-Way South Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.150815, 39.712822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292772", "FULLNAME": "Indianapolis Downtown Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.148868, 39.765876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00448350", "POINTID": "1102654002170", "FULLNAME": "Wellington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.143595, 39.871709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103692222065", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.152701, 39.889110 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446069", "POINTID": "1102654002944", "FULLNAME": "Williams Creek", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.150260, 39.899763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319761093", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154895, 39.917367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432769", "POINTID": "1102653973542", "FULLNAME": "College Crest", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.150539, 39.925040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440288", "POINTID": "1102653993391", "FULLNAME": "North Ridge Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.149150, 39.935040 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319746208", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.149482, 39.933752 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319746207", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.147138, 39.933709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319746141", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.153020, 39.942750 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379852", "FULLNAME": "Clay Township Government Ctr", "MTFCC": "K2165" }, "geometry": { "type": "Point", "coordinates": [ -86.145553, 39.943048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259108008", "FULLNAME": "Penn Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154847, 39.944878 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319752374", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.150102, 39.950004 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319745655", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.149035, 39.952254 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259096533", "FULLNAME": "Bentley Way", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154707, 39.984599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259096807", "FULLNAME": "Parkview Court", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.153176, 39.991208 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319760260", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.144000, 39.993684 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052043452", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154705, 40.001842 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296193683", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.146682, 40.001186 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319760262", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.144408, 39.994946 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296194004", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154831, 40.002958 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259071063", "FULLNAME": "Count Fleet Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154651, 40.009891 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052043299", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.151035, 40.003767 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296193703", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.147667, 40.003278 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052589564", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.150014, 40.017831 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052589563", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.149048, 40.017116 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977537782", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.148595, 40.023513 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977537159", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154512, 40.029950 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977537164", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.148919, 40.029882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052596253", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.147326, 40.084171 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12388 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292259", "FULLNAME": "Windy Knoll Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.151210, 40.139468 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444655", "POINTID": "1102654000532", "FULLNAME": "Tetersburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.151097, 40.275312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446261", "POINTID": "1102654022153", "FULLNAME": "Wolford Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.152210, 40.286702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435162", "POINTID": "1102653981066", "FULLNAME": "Goldsmith", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.149155, 40.289480 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262931808", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.149442, 40.413043 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262931811", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.147498, 40.410629 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292310", "FULLNAME": "Indian Hills Flying Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.151221, 40.416880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471622377", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.151422, 40.424231 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538980", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154160, 40.432308 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262925289", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.149517, 40.463915 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443276", "POINTID": "1102653998132", "FULLNAME": "Shambaugh Siding", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.152765, 40.482813 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066539142", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.153983, 40.500499 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12337 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067097457", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.144046, 40.569816 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12330 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292618", "FULLNAME": "Caldwell Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.153991, 40.623914 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12327 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292634", "FULLNAME": "Grissom Arb Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.152114, 40.648093 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067097343", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154740, 40.672253 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12324 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067097343", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154740, 40.672253 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12320 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439054", "POINTID": "1102654016022", "FULLNAME": "Metzger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.153600, 40.706982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12311 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292668", "FULLNAME": "Peru Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.146430, 40.785771 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12308 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434039", "POINTID": "1102654011568", "FULLNAME": "Eel River Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.152492, 40.808095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12297 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449708", "POINTID": "1102653994768", "FULLNAME": "Perrysburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.149437, 40.897816 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12286 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02104746", "POINTID": "1102654001659", "FULLNAME": "Wagoner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.148997, 40.989497 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12284 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439738", "POINTID": "1102654016566", "FULLNAME": "Mount Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.149995, 41.010317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445355", "POINTID": "1102653991872", "FULLNAME": "Mt Zion", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.149161, 41.014205 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435653", "POINTID": "1102654013080", "FULLNAME": "Hamlett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.148608, 41.141708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292657", "FULLNAME": "Ball Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.147055, 41.343597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292715", "FULLNAME": "Unsicker Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.152049, 41.427522 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431479", "POINTID": "1102653969294", "FULLNAME": "Bremen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.148055, 41.446434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104486035253", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.153297, 41.647138 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019627581597", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.153103, 41.642851 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106039409972", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.146256, 41.648709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110345013468", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.148823, 41.672369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110345013397", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.144019, 41.672768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292416", "FULLNAME": "Nelund Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.153726, 41.686979 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344775851", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.150684, 41.683760 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010881653595", "FULLNAME": "Glaser Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.147624, 41.697282 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103736287412", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.147283, 41.705789 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732194304", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.149338, 41.704493 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103736279937", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.148423, 41.702456 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103736283084", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.147345, 41.707649 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344852993", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.152237, 41.745497 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047438824", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.153195, 41.753946 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344855803", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.145502, 41.748471 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047438904", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.149177, 41.746568 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732882630", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.151835, 41.760012 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047438819", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.148895, 41.756513 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437110", "POINTID": "1102654014306", "FULLNAME": "Jordan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.138579, 38.164234 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12612 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311034619", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.142270, 38.233004 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017128760277", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.143600, 38.431377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12571 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01923560", "POINTID": "1102654010219", "FULLNAME": "Coggswell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.142479, 38.588114 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452395", "POINTID": "1102653962391", "FULLNAME": "Salem Speedway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.140256, 38.599778 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12569 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01923563", "POINTID": "1102653962401", "FULLNAME": "Salem Speedway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.140256, 38.600057 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435773", "POINTID": "1102654013175", "FULLNAME": "Harrell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.137203, 38.774775 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451181", "POINTID": "1102654015291", "FULLNAME": "Lucas Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.136927, 38.970328 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449710", "POINTID": "1102653994965", "FULLNAME": "Pikes Peak", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.141377, 39.129218 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444544", "POINTID": "1102654000231", "FULLNAME": "Taggart", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.138880, 39.261714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444584", "POINTID": "1102654020783", "FULLNAME": "Taylor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.139435, 39.274769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444584", "POINTID": "1102654020783", "FULLNAME": "Taylor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.139435, 39.274769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046718836", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.143072, 39.579676 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259772401", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.142873, 39.572897 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047018729", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.143970, 39.586068 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113552178", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.137434, 39.597238 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113529655", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.139193, 39.597048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471589278", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.143826, 39.605110 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.142855, 39.602609 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041108", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.133145, 39.614239 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041200", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.135704, 39.605579 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041117", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.142155, 39.621348 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113555312", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.136305, 39.615278 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113547768", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.143954, 39.626129 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113530736", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.141186, 39.631159 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113549979", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.142766, 39.627418 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113550044", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.140604, 39.626249 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047022300", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.142935, 39.632919 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047022386", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.137115, 39.634148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296192752", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.143890, 39.645593 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296192755", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.143466, 39.646316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052108171", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.138201, 39.670280 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052108600", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.132748, 39.666107 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434013", "POINTID": "1102653977134", "FULLNAME": "Edgewood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.134148, 39.684767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445147", "POINTID": "1102654001205", "FULLNAME": "University Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.134425, 39.704766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452305", "POINTID": "1102653957266", "FULLNAME": "Douglas Park Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.133038, 39.805876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449481", "POINTID": "1102653969707", "FULLNAME": "Broad Ripple", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.141650, 39.866709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00448350", "POINTID": "1102654002170", "FULLNAME": "Wellington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.143595, 39.871709 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443445", "POINTID": "1102653998360", "FULLNAME": "Shore Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.137592, 39.875861 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443445", "POINTID": "1102653998360", "FULLNAME": "Shore Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.137592, 39.875861 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103692224153", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.143571, 39.885438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440362", "POINTID": "1102653961153", "FULLNAME": "Nora Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.138727, 39.914575 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447649", "POINTID": "1102653993193", "FULLNAME": "Nora", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.134741, 39.912540 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066287144", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.141082, 39.933199 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107061680099", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.136865, 39.933830 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432774", "POINTID": "1102653973558", "FULLNAME": "College Meadows", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.140261, 39.935317 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379840", "FULLNAME": "Orchard Park Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.133327, 39.938304 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436367", "POINTID": "1102653984094", "FULLNAME": "Home Place", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.143316, 39.943928 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259105968", "FULLNAME": "Arlington Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.137820, 39.948505 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051985431", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.139505, 39.965617 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105580106253", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.138963, 39.961744 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259094029", "FULLNAME": "Wilson Terrace Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.138560, 39.977712 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379836", "FULLNAME": "Meadowlark Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -86.134253, 39.981967 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319760259", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.140953, 39.993989 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319760260", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.144000, 39.993684 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319760261", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.142085, 39.993684 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319760120", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.135082, 39.993586 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296193654", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.140577, 40.000488 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319760118", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.134720, 39.996892 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319731252", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.139443, 40.010335 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296193420", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.136855, 40.005856 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052597377", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.143008, 40.016650 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977601639", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.141731, 40.011434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052652731", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.141186, 40.077470 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430439", "POINTID": "1102653966336", "FULLNAME": "Bakers Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.137485, 40.130591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12383 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441085", "POINTID": "1102654017825", "FULLNAME": "Phillips Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.137485, 40.184480 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066537970", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.132853, 40.432565 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262926799", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.133598, 40.452121 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437425", "POINTID": "1102653986483", "FULLNAME": "Kokomo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.133598, 40.486426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12337 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067098272", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.141379, 40.569600 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067098323", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.140127, 40.566305 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067096040", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.135315, 40.565355 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12323 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434964", "POINTID": "1102654012396", "FULLNAME": "Garnand Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.141935, 40.685040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431408", "POINTID": "1102654008189", "FULLNAME": "Bowman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.139435, 40.763651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437435", "POINTID": "1102654014641", "FULLNAME": "Koontz Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.138048, 40.825318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12290 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441220", "POINTID": "1102654017889", "FULLNAME": "Plainview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.137214, 40.957817 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444555", "POINTID": "1102654000263", "FULLNAME": "Talma", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.134996, 41.153929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444555", "POINTID": "1102654000263", "FULLNAME": "Talma", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.134996, 41.153929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136305643", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.139818, 41.442937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452816", "POINTID": "1102654000272", "FULLNAME": "Tamarack Grange", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.137780, 41.596159 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452595", "POINTID": "1102654011733", "FULLNAME": "Eutzler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.143059, 41.633658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106073871527", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.140518, 41.645929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010881645429", "FULLNAME": "Capital Ave", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.138421, 41.660158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010881638468", "FULLNAME": "Treys Trail", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.143077, 41.672800 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010881638468", "FULLNAME": "Treys Trail", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.143077, 41.672800 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052126910", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.138644, 41.687612 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344855604", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.143211, 41.702416 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110345010544", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.138727, 41.733851 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344856361", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.134001, 41.734419 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017129098639", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.143418, 41.744410 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735243157", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.136495, 41.745883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344856013", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.142997, 41.752545 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344856108", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.137297, 41.752665 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735242652", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.132609, 41.747196 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732885684", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.140089, 41.760040 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732885828", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.135835, 41.759954 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047438827", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.132796, 41.759608 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12633 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00448363", "POINTID": "1102653951049", "FULLNAME": "Boundary Mound", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.123028, 38.054227 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12624 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436880", "POINTID": "1102654014173", "FULLNAME": "Jackson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.126635, 38.127567 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433003", "POINTID": "1102653973993", "FULLNAME": "Corydon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.121915, 38.212010 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12610 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017129109616", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.130380, 38.255371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12609 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017129109616", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.130380, 38.255371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292295", "FULLNAME": "Jacobi Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.127588, 38.409493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445323", "POINTID": "1102654021367", "FULLNAME": "Voyles Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.124699, 38.471170 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436147", "POINTID": "1102653983511", "FULLNAME": "Highland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.127478, 38.649502 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12535 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451473", "POINTID": "1102654019918", "FULLNAME": "Smallwood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.125538, 38.897830 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450936", "POINTID": "1102653979987", "FULLNAME": "Freetown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.129428, 38.973108 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452530", "POINTID": "1102654021402", "FULLNAME": "Waggoner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.132485, 39.029496 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451231", "POINTID": "1102654016140", "FULLNAME": "Moffitt Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.130264, 39.115883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439597", "POINTID": "1102653991694", "FULLNAME": "Mt Liberty", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.130267, 39.184215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432574", "POINTID": "1102653972935", "FULLNAME": "Clarksdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.126102, 39.200049 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447629", "POINTID": "1102654000097", "FULLNAME": "Sweetwater Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.129157, 39.300048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046727937", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.123843, 39.357811 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471322678", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.124675, 39.576348 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262941268", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.128588, 39.583203 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472665611", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.122743, 39.582649 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047023343", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.132855, 39.602099 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041233", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.129704, 39.605558 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438785", "POINTID": "1102653989897", "FULLNAME": "McCarty", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.131091, 39.609211 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041233", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.129704, 39.605558 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041256", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.126284, 39.605610 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041115", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.131023, 39.618708 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046968915", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.122604, 39.617898 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052394053", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.130895, 39.625059 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449454", "POINTID": "1102653960317", "FULLNAME": "Margate Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.122832, 39.629180 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047025395", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.131386, 39.632279 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066770693", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.130916, 39.647890 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066770697", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.131606, 39.648850 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104989337003", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.126434, 39.653373 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066770693", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.130916, 39.647890 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443880", "POINTID": "1102653998990", "FULLNAME": "Southport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.127842, 39.665042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436370", "POINTID": "1102653984109", "FULLNAME": "Homecroft", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.131369, 39.670044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442305", "POINTID": "1102653997048", "FULLNAME": "Rosedale Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.131369, 39.693655 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052100766", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.123503, 39.730506 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052100769", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.121724, 39.730529 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052100978", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.128580, 39.735158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449542", "POINTID": "1102654003296", "FULLNAME": "Woodruff Place", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.128314, 39.777542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296215866", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.126764, 39.812269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452112", "POINTID": "1102653969694", "FULLNAME": "Broad Ripple", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.130538, 39.866709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441791", "POINTID": "1102653996093", "FULLNAME": "Ravenswood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.131093, 39.888095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319721163", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.128293, 39.904597 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319721154", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.126920, 39.904551 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449410", "POINTID": "1102653961318", "FULLNAME": "Northview Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.130817, 39.913096 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433693", "POINTID": "1102653976247", "FULLNAME": "Driftwood Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.122204, 39.916984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443371", "POINTID": "1102653998269", "FULLNAME": "Sherwood Forest", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.129704, 39.918928 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259114671", "FULLNAME": "Highland Cove", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.130916, 39.942015 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440686", "POINTID": "1102653994091", "FULLNAME": "Orchard Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.129983, 39.937538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433989", "POINTID": "1102653977057", "FULLNAME": "Echo Crest", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.129428, 39.950594 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379862", "FULLNAME": "Carmel City Hall", "MTFCC": "K2165" }, "geometry": { "type": "Point", "coordinates": [ -86.128636, 39.965323 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440134", "POINTID": "1102653992994", "FULLNAME": "Newark Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.123315, 39.967817 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052028575", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.123556, 39.972123 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379863", "FULLNAME": "Carmel Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.121714, 39.975414 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052084691", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.129261, 39.984223 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319731305", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.129865, 39.994077 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259076351", "FULLNAME": "Walter Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.131203, 39.993935 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319731305", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.129865, 39.994077 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259076351", "FULLNAME": "Walter Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.131203, 39.993935 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296198529", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -86.122644, 40.007490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977538345", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.129696, 40.036072 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259030575", "FULLNAME": "Whitebark Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.122317, 40.036059 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066281905", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.132391, 40.028500 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977538347", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.126826, 40.033242 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066282692", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.130956, 40.044078 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977538345", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.129696, 40.036072 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977652053", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.122102, 40.040665 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977652052", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.121748, 40.041557 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052032016", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.125981, 40.049745 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432451", "POINTID": "1102654009785", "FULLNAME": "Chester Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.128596, 40.071705 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296195368", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.126912, 40.071311 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016954890341", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.127166, 40.079405 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813382829", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.123712, 40.136844 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12388 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813382829", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.123712, 40.136844 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433938", "POINTID": "1102653976937", "FULLNAME": "East Union", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.128320, 40.217258 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444938", "POINTID": "1102654021074", "FULLNAME": "Tucker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.127722, 40.273031 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067451427", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.124801, 40.386656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436762", "POINTID": "1102653984862", "FULLNAME": "Indian Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.125544, 40.427259 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051948823", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.121751, 40.422267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066537970", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.132853, 40.432565 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104258914769", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.132407, 40.453142 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292349", "FULLNAME": "Regional Health System Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.125656, 40.447247 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452281", "POINTID": "1102653955774", "FULLNAME": "American Legion Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.125823, 40.457258 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066539418", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.129487, 40.521543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12338 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432222", "POINTID": "1102654009476", "FULLNAME": "Cassville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.126933, 40.563679 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432221", "POINTID": "1102653971740", "FULLNAME": "Cassville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.122768, 40.560037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12326 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444004", "POINTID": "1102654020161", "FULLNAME": "Springdale Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.122212, 40.659761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12320 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439955", "POINTID": "1102653992116", "FULLNAME": "Nead", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.127537, 40.707131 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12317 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067094550", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.122652, 40.736472 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067094545", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.123111, 40.742929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12290 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438463", "POINTID": "1102653988950", "FULLNAME": "Macy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.127215, 40.959206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430320", "POINTID": "1102653965864", "FULLNAME": "Athens", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.125273, 41.053650 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485730937", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.129677, 41.455368 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292707", "FULLNAME": "Creighton Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.123167, 41.456699 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344791471", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.127987, 41.648326 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344788118", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.123835, 41.648214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010881652810", "FULLNAME": "Bennington Dr", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.130315, 41.653172 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344797800", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.131158, 41.649647 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015503565474", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.125616, 41.651010 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344788118", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.123835, 41.648214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107062587661", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.131833, 41.670021 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047538985", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.123285, 41.665629 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732221088", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.132402, 41.678908 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735242917", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.132981, 41.750364 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344856130", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.132145, 41.752705 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047438827", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.132796, 41.759608 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732886996", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.127934, 41.756011 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12616 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436196", "POINTID": "1102653983619", "FULLNAME": "Hillcrest", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.118581, 38.203679 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433003", "POINTID": "1102653973993", "FULLNAME": "Corydon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.121915, 38.212010 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436196", "POINTID": "1102653983619", "FULLNAME": "Hillcrest", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.118581, 38.203679 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108310930649", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.111062, 38.269248 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12576 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446123", "POINTID": "1102654022048", "FULLNAME": "Wilson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.113865, 38.543947 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12569 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102217973367", "FULLNAME": "Land Mark Dr Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.117763, 38.602601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12568 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119066452", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.117934, 38.610921 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438804", "POINTID": "1102653989913", "FULLNAME": "McCol Place", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.114421, 38.609223 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119062937", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.112243, 38.622673 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450665", "POINTID": "1102654007236", "FULLNAME": "Beck Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.111376, 39.078939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12513 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450666", "POINTID": "1102653967220", "FULLNAME": "Becks Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.116652, 39.079216 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451333", "POINTID": "1102654017823", "FULLNAME": "Phillips Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.111653, 39.083661 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450665", "POINTID": "1102654007236", "FULLNAME": "Beck Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.111376, 39.078939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452891", "POINTID": "1102653986849", "FULLNAME": "Lake on the Green", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.116655, 39.137550 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441896", "POINTID": "1102653954197", "FULLNAME": "Renner Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.119713, 39.306158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019665352199", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.114775, 39.353877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439639", "POINTID": "1102653991770", "FULLNAME": "Mt Pleasant", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.119426, 39.460325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096386", "POINTID": "1102654011980", "FULLNAME": "First Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.121105, 39.461942 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436445", "POINTID": "1102653984308", "FULLNAME": "Hopewell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.117202, 39.491991 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096385", "POINTID": "1102654013794", "FULLNAME": "Hopewell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.115826, 39.492773 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441248", "POINTID": "1102654017910", "FULLNAME": "Pleasant Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.114978, 39.541990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292363", "FULLNAME": "Berry Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.116773, 39.566095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472461663", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.118114, 39.577617 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046040912", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.119874, 39.585307 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046040914", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.115303, 39.585518 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046973903", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.120144, 39.596459 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041269", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.116295, 39.596279 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046040780", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.113385, 39.590808 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113552207", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.119833, 39.604359 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113731379", "FULLNAME": "School Football Fld", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.114445, 39.602820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046968923", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.121384, 39.612359 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449845", "POINTID": "1102653999187", "FULLNAME": "Spring Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.118312, 39.620045 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435467", "POINTID": "1102654012911", "FULLNAME": "Greenwood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.118591, 39.615324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113559489", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.111366, 39.630678 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113559493", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.110775, 39.630719 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105317157258", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.116341, 39.654554 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452087", "POINTID": "1102654001122", "FULLNAME": "Twin Brooks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.120257, 39.668934 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096281", "POINTID": "1102654020087", "FULLNAME": "Southport Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.116384, 39.665277 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066774976", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.116255, 39.692578 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052100769", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.121724, 39.730529 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104988947859", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.113326, 39.724794 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440038", "POINTID": "1102654016744", "FULLNAME": "New Crown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.117202, 39.739211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449442", "POINTID": "1102653963173", "FULLNAME": "Twin-Aire Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.115177, 39.757923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449442", "POINTID": "1102653963173", "FULLNAME": "Twin-Aire Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.115177, 39.757923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444442", "POINTID": "1102654020623", "FULLNAME": "Sutherland Park Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.119426, 39.831986 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449441", "POINTID": "1102653960496", "FULLNAME": "Meadows Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.116092, 39.829209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292813", "FULLNAME": "Roto-Whirl/vantage Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.118591, 39.837265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449440", "POINTID": "1102653958217", "FULLNAME": "Glendale Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.119426, 39.866709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433363", "POINTID": "1102653975188", "FULLNAME": "Dawnbury", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.120831, 39.869681 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433110", "POINTID": "1102653974298", "FULLNAME": "Creekwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.118870, 39.877263 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311542233", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.112543, 39.878016 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311542232", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.110754, 39.877366 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449417", "POINTID": "1102653961183", "FULLNAME": "Noregate Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.118315, 39.887541 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435111", "POINTID": "1102653980872", "FULLNAME": "Glendale Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.110816, 39.885874 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319717803", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.121276, 39.898720 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319717802", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.118227, 39.896308 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319718019", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.112725, 39.894269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319715211", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.121260, 39.913927 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319715214", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.115177, 39.915200 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432456", "POINTID": "1102653972596", "FULLNAME": "Chesterton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.120815, 39.928929 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102818010067", "FULLNAME": "Colony Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.115695, 39.932829 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102802493145", "FULLNAME": "Oakwood Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.112253, 39.943564 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436304", "POINTID": "1102653984007", "FULLNAME": "Holaday Hills and Dales", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.119426, 39.936428 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977720330", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.111808, 39.936905 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102802476685", "FULLNAME": "Rollshore Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.111398, 39.951828 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379831", "FULLNAME": "Forest Dale Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.110800, 39.945458 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485240148", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.113219, 39.959993 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102802468364", "FULLNAME": "Springs Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.112725, 39.954034 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102802476685", "FULLNAME": "Rollshore Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.111398, 39.951828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485240149", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.113128, 39.960681 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379863", "FULLNAME": "Carmel Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.121714, 39.975414 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102931683847", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.113940, 39.972319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379864", "FULLNAME": "Carmel High School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.121177, 39.979206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066296528", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.120187, 39.993493 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977543418", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.112650, 39.992353 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066296533", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.119975, 39.995507 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977543417", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.115520, 39.995651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319759863", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.119482, 40.006997 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319759997", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.113814, 40.006886 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319759994", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.114442, 40.003249 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319759108", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.116497, 40.019349 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319759255", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.111202, 40.019316 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013849736058", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.114286, 40.011929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103945191004", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.117336, 40.027680 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319759108", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.116497, 40.019349 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319759255", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.111202, 40.019316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259030744", "FULLNAME": "Torrey Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.119042, 40.036086 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977539001", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.116776, 40.032476 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103945191004", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.117336, 40.027680 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977652052", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.121748, 40.041557 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977600019", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.110902, 40.039791 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319731730", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.117224, 40.047185 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319731497", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.116148, 40.047191 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977509093", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.111626, 40.044335 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066284524", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.117996, 40.061817 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445768", "POINTID": "1102654021692", "FULLNAME": "West Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.114150, 40.115036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433793", "POINTID": "1102654011449", "FULLNAME": "Dunn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.117763, 40.157816 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292335", "FULLNAME": "Skyridge Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.114541, 40.178634 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12375 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430989", "POINTID": "1102654007582", "FULLNAME": "Bethsaida Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.121097, 40.253369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436882", "POINTID": "1102654014181", "FULLNAME": "Jackson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.115542, 40.360869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051948746", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.118143, 40.420509 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066539375", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.117138, 40.430295 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051948859", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.122041, 40.424027 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051948823", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.121751, 40.422267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066539375", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.117138, 40.430295 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066539372", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.114101, 40.430944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066542278", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.110985, 40.439321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262927776", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.115298, 40.451207 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538609", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.121091, 40.464803 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433218", "POINTID": "1102654011024", "FULLNAME": "Crown Point Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.116376, 40.486981 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449438", "POINTID": "1102653962945", "FULLNAME": "Sycamore Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.111097, 40.488925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438994", "POINTID": "1102654015916", "FULLNAME": "Memorial Park", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.116100, 40.497260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430817", "POINTID": "1102653967669", "FULLNAME": "Bennetts Switch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.112766, 40.585038 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067098436", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.116234, 40.727743 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12317 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292659", "FULLNAME": "Robison Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.113991, 40.735582 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445663", "POINTID": "1102654002183", "FULLNAME": "Wells", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.111100, 40.732261 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067094553", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.119208, 40.741565 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12307 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439059", "POINTID": "1102653990387", "FULLNAME": "Mexico", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.115547, 40.822262 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435406", "POINTID": "1102654012846", "FULLNAME": "Green Lawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.117492, 40.829485 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439059", "POINTID": "1102653990387", "FULLNAME": "Mexico", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.115547, 40.822262 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12304 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067094334", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.114694, 40.839112 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12296 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436691", "POINTID": "1102654014080", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.111382, 40.909763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439577", "POINTID": "1102654016401", "FULLNAME": "Mount Hope Athens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.121105, 41.054207 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440605", "POINTID": "1102653993950", "FULLNAME": "Old Tip Town", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.115274, 41.223654 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440893", "POINTID": "1102654017643", "FULLNAME": "Parks Memorial Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.119721, 41.289765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12249 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431382", "POINTID": "1102653969010", "FULLNAME": "Bourbon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.116387, 41.295599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110345007176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.121118, 41.647771 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344855901", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.116277, 41.645899 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259840590", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.120842, 41.651341 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110345013974", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.112312, 41.651004 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047538869", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.119871, 41.668668 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047538797", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.111730, 41.671954 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732323404", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.113069, 41.677383 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735237423", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.114893, 41.736619 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735237793", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.116408, 41.739477 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735238064", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.114987, 41.741963 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452610", "POINTID": "1102653981312", "FULLNAME": "Granger", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.110837, 41.753381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732887435", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.117234, 41.759794 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01923561", "POINTID": "1102654010976", "FULLNAME": "Crown Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.108300, 38.100346 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108310927089", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.108399, 38.209477 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108310927176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.101238, 38.209257 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12614 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017129108979", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.108766, 38.218383 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435788", "POINTID": "1102653982558", "FULLNAME": "Harrison Grange", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.102190, 38.215344 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432898", "POINTID": "1102654010538", "FULLNAME": "Conrad Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.107747, 38.264787 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12607 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436655", "POINTID": "1102654013988", "FULLNAME": "Hurst Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.107747, 38.281176 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436655", "POINTID": "1102654013988", "FULLNAME": "Hurst Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.107747, 38.281176 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433004", "POINTID": "1102653974008", "FULLNAME": "Corydon Junction", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.100248, 38.303396 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440849", "POINTID": "1102653994376", "FULLNAME": "Palmyra", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.109973, 38.407839 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12581 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443457", "POINTID": "1102653998367", "FULLNAME": "Shorts Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.100253, 38.499780 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12569 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102217980984", "FULLNAME": "Hounds Way Dr Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.110330, 38.603717 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119379874", "FULLNAME": "Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -86.105296, 38.605098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12568 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119379745", "FULLNAME": "Nat'l Guard Armory", "MTFCC": "K2110" }, "geometry": { "type": "Point", "coordinates": [ -86.108651, 38.616269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102217958754", "FULLNAME": "Natalie Ct Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.109526, 38.620714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12557 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437446", "POINTID": "1102653986531", "FULLNAME": "Kossuth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.102756, 38.704499 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432779", "POINTID": "1102654010286", "FULLNAME": "Collett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.109145, 38.742555 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439241", "POINTID": "1102653990826", "FULLNAME": "Millport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.103314, 38.771442 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443661", "POINTID": "1102654019932", "FULLNAME": "Smith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.099693, 38.840608 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110101146479", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.108431, 39.151354 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052430190", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.103464, 39.358558 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052594355", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.107326, 39.360557 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433625", "POINTID": "1102653951726", "FULLNAME": "Donalds Knoll", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.108868, 39.504490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047019685", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.104153, 39.539917 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047019836", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.100572, 39.553067 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047019924", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.100634, 39.550499 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047019749", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.108313, 39.562669 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113575689", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.099733, 39.556517 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041284", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.104523, 39.570327 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113564207", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.106074, 39.585818 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499679321", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.105513, 39.581299 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046971139", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.101125, 39.602539 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113557245", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.099693, 39.603958 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435464", "POINTID": "1102653981732", "FULLNAME": "Greenwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.106645, 39.613656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113731362", "FULLNAME": "Preschool", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.108662, 39.614479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113559493", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.110775, 39.630719 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113559479", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.106784, 39.626720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047025439", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.109775, 39.634719 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081799129", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.104687, 39.636408 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052108096", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.108230, 39.653538 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052108074", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.103740, 39.653918 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296188751", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.106894, 39.664222 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296188750", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.103912, 39.664267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296188749", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.104569, 39.668263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441032", "POINTID": "1102653994752", "FULLNAME": "Perry Manor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.106924, 39.675323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449452", "POINTID": "1102653956599", "FULLNAME": "Carson Square Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.110258, 39.693100 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504195541", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.104043, 39.692518 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066772692", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.109668, 39.727468 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052100215", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.110124, 39.742638 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311542118", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.110413, 39.878784 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311542093", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.102120, 39.879535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052151145", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.108096, 39.890081 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441233", "POINTID": "1102653995159", "FULLNAME": "Pleasant Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.102758, 39.891151 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449416", "POINTID": "1102653959575", "FULLNAME": "Keystone at the Crossing Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.108316, 39.913929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977720324", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.111052, 39.934711 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977720325", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.109762, 39.934696 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977720337", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.109104, 39.939624 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977720327", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.108471, 39.936311 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102818016505", "FULLNAME": "Power Pl", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.101299, 39.939027 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977720342", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.108455, 39.950656 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102802443603", "FULLNAME": "Timber Springs Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.102718, 39.950642 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102802514398", "FULLNAME": "Bayshore Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.104558, 39.946122 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102802413695", "FULLNAME": "Brunswick Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.099776, 39.947502 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485240192", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.110317, 39.960406 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485240173", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.110314, 39.959220 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379868", "FULLNAME": "Christian Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -86.105478, 39.956343 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102802480420", "FULLNAME": "Twin Springs Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.100682, 39.955371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485240192", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.110317, 39.960406 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259093649", "FULLNAME": "Cricketknoll Lane", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.109649, 39.975077 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379839", "FULLNAME": "Mohawk Hills Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.100162, 39.971971 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977543423", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.110043, 39.990972 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977543422", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.109292, 39.988005 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977543415", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.110856, 39.995193 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472460514", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.106795, 39.998988 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977546505", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.103531, 39.996853 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977546487", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.099650, 40.001655 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052252358", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.105835, 40.004305 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319759526", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.102533, 40.010756 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319759251", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.109837, 40.020444 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472482333", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.103230, 40.026462 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052600495", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.109931, 40.036068 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052600525", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.109805, 40.034718 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977512228", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.103474, 40.035080 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977600019", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.110902, 40.039791 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977600020", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.109719, 40.039813 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977512227", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.101795, 40.038920 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066297456", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.108504, 40.049889 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296196780", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.101490, 40.049768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052658953", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.107906, 40.056239 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013845458268", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.103595, 40.056874 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439661", "POINTID": "1102654016488", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.108316, 40.129758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451545", "POINTID": "1102654020792", "FULLNAME": "Taylor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.099985, 40.156702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12373 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292450", "FULLNAME": "Baird-Wolford Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.101535, 40.264711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12369 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444151", "POINTID": "1102654020364", "FULLNAME": "Stewart Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.106095, 40.302258 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443304", "POINTID": "1102654019535", "FULLNAME": "Sharp Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.108598, 40.339203 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440462", "POINTID": "1102653993677", "FULLNAME": "Oakford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.104153, 40.419204 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538584", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.106806, 40.428888 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538575", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.103853, 40.430128 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538501", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.108522, 40.436355 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538572", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.102823, 40.430465 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538575", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.103853, 40.430128 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066542278", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.110985, 40.439321 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066537990", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.109619, 40.439378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449437", "POINTID": "1102653959685", "FULLNAME": "Kokomo Mall", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.109432, 40.454203 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262927761", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.109509, 40.449547 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499677363", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.099792, 40.465756 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12331 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439066", "POINTID": "1102653990394", "FULLNAME": "Miami", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.106377, 40.614205 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12326 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449627", "POINTID": "1102653970634", "FULLNAME": "Bunker Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.102766, 40.660317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12324 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437785", "POINTID": "1102654014941", "FULLNAME": "Leonda Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.103601, 40.676427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12317 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434610", "POINTID": "1102653979228", "FULLNAME": "Flora", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.099988, 40.733930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067100053", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.107305, 40.762693 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12296 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433408", "POINTID": "1102653975386", "FULLNAME": "Deedsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.101103, 40.910318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12293 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431104", "POINTID": "1102653968165", "FULLNAME": "Birmingham", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.109437, 40.937817 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443003", "POINTID": "1102654019300", "FULLNAME": "Sandridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.102219, 41.362267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452749", "POINTID": "1102654018435", "FULLNAME": "Resthaven Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.100001, 41.565325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047695608", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.110030, 41.664340 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047538734", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.109831, 41.672379 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344761971", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.100436, 41.671000 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103736340617", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.101506, 41.679767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344844452", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.100650, 41.692397 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735236747", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.109214, 41.736027 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735236429", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.103874, 41.738088 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052125851", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.108388, 41.745571 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735236515", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.100875, 41.739109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452610", "POINTID": "1102653981312", "FULLNAME": "Granger", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.110837, 41.753381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732889207", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.107694, 41.758040 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732889279", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.102050, 41.758566 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732889306", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.099816, 41.759332 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12616 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452296", "POINTID": "1102653956924", "FULLNAME": "Corydon Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.098770, 38.201980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108310927177", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.099333, 38.208513 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108310927178", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.097681, 38.207127 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439510", "POINTID": "1102653991537", "FULLNAME": "Mott Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.090525, 38.298119 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440115", "POINTID": "1102653992895", "FULLNAME": "New Salisbury", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.094972, 38.313675 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108310930173", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.095334, 38.327084 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437155", "POINTID": "1102654014343", "FULLNAME": "Kaleg Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.099137, 38.354229 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432350", "POINTID": "1102653972235", "FULLNAME": "Central Barren", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.096361, 38.364230 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12585 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441982", "POINTID": "1102654018518", "FULLNAME": "Rickerd Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.099411, 38.464221 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12574 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446339", "POINTID": "1102654022246", "FULLNAME": "Wright Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.095809, 38.561168 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12571 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105576261032", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.093961, 38.586795 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12569 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119379863", "FULLNAME": "City Hall", "MTFCC": "K2165" }, "geometry": { "type": "Point", "coordinates": [ -86.099870, 38.604830 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434280", "POINTID": "1102653978184", "FULLNAME": "Fair Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.090254, 38.604224 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441070", "POINTID": "1102654017815", "FULLNAME": "Peugh Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.097456, 38.689720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441230", "POINTID": "1102653995141", "FULLNAME": "Plattsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.089701, 38.719499 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445200", "POINTID": "1102654001331", "FULLNAME": "Vallonia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.097759, 38.846998 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443661", "POINTID": "1102654019932", "FULLNAME": "Smith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.099693, 38.840608 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439182", "POINTID": "1102654016078", "FULLNAME": "Miller Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.089422, 38.862230 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445574", "POINTID": "1102654021587", "FULLNAME": "Wayman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.098593, 38.923386 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450746", "POINTID": "1102654009075", "FULLNAME": "Cain Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.097488, 39.093940 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433589", "POINTID": "1102654011342", "FULLNAME": "Dobbs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.090546, 39.202826 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577535164", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.090302, 39.221821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437404", "POINTID": "1102653953082", "FULLNAME": "Knob Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.090546, 39.232270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437404", "POINTID": "1102653953082", "FULLNAME": "Knob Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.090546, 39.232270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430155", "POINTID": "1102654006628", "FULLNAME": "Anderson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.096101, 39.299214 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439603", "POINTID": "1102654016433", "FULLNAME": "Mount Moriah Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.093046, 39.299214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452073", "POINTID": "1102653995696", "FULLNAME": "Princes Lakes", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.098043, 39.353659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113562746", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.091203, 39.361527 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439873", "POINTID": "1102654016620", "FULLNAME": "Mulligans Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.091093, 39.431434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113561530", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.095701, 39.484497 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113561213", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.090654, 39.537958 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041331", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.092802, 39.537847 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113561222", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088763, 39.537907 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259631186", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.098453, 39.538287 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113561213", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.090654, 39.537958 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041331", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.092802, 39.537847 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046990392", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088781, 39.538817 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113561222", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088763, 39.537907 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046990047", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.091383, 39.550687 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047019796", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.097592, 39.557168 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041545", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.093513, 39.557937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113529842", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.098472, 39.567679 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046648557", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.094194, 39.566037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046844631", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.093843, 39.572618 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046986805", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.092164, 39.595448 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476302736", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.089235, 39.589758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046971147", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.098545, 39.605589 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047026206", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.093733, 39.605037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046971138", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.097394, 39.610210 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046968023", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.089535, 39.613859 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046971147", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.098545, 39.605589 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046968058", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.094334, 39.616208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047025507", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.095645, 39.630769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113551052", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.099113, 39.634518 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813435426", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.092805, 39.646250 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296190012", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.097381, 39.654949 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296189767", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.092239, 39.652177 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296189122", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.097560, 39.661532 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296189217", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.094175, 39.660452 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292797", "FULLNAME": "Southport Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.095769, 39.669020 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080839124", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088897, 39.669570 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107276986235", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.096005, 39.689414 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813438900", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.092657, 39.688446 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977510619", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.093979, 39.707343 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977510709", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.093934, 39.704362 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066775956", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.097584, 39.713026 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977510619", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.093979, 39.707343 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096257", "POINTID": "1102654007725", "FULLNAME": "Blackwell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.096887, 39.717875 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430719", "POINTID": "1102653967324", "FULLNAME": "Beech Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.089980, 39.721988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449444", "POINTID": "1102653960117", "FULLNAME": "Linwood Square Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.093591, 39.779210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311175246", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.098185, 39.842140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311175246", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.098185, 39.842140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066775081", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.095642, 39.854571 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439235", "POINTID": "1102653990769", "FULLNAME": "Millersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.091649, 39.853097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319716654", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.093969, 39.899504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319716653", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.089353, 39.902432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102818018773", "FULLNAME": "Shafer Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.098901, 39.940496 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102802470938", "FULLNAME": "Amon Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.096168, 39.950107 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103694845461", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.098043, 39.958169 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102802517049", "FULLNAME": "Green Pl", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.092931, 39.955560 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977542247", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.090385, 39.983808 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977542171", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088768, 39.981177 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977546499", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.099475, 39.993534 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977542248", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.090334, 39.986385 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977546487", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.099650, 40.001655 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105580031426", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.094049, 39.997256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052258293", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.098247, 40.007058 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013849743436", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.093550, 40.027526 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977512240", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.097351, 40.036076 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977512253", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.098598, 40.033722 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977512223", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.090734, 40.034759 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013849743436", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.093550, 40.027526 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977513015", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088682, 40.034456 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977509088", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.097348, 40.044218 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977512221", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.091989, 40.037998 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977509085", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.098732, 40.048959 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066296164", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.089565, 40.047156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013845951038", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.092346, 40.057177 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472482908", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.091788, 40.053100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103687142498", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088875, 40.082158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433464", "POINTID": "1102653975543", "FULLNAME": "Deming", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.098596, 40.115315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451545", "POINTID": "1102654020792", "FULLNAME": "Taylor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.099985, 40.156702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292230", "FULLNAME": "Bee-Acre Farm Strip", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.099263, 40.205579 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438739", "POINTID": "1102654015590", "FULLNAME": "Mauldentown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.095819, 40.289480 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499369298", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.095455, 40.470390 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499677350", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.094291, 40.468649 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433322", "POINTID": "1102653975159", "FULLNAME": "Darrough Chapel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.095543, 40.478647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066543849", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.098976, 40.491118 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12340 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436572", "POINTID": "1102654013892", "FULLNAME": "Hudson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.093320, 40.542537 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432484", "POINTID": "1102654009831", "FULLNAME": "Chitick Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.089988, 40.591148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443311", "POINTID": "1102654019553", "FULLNAME": "Sharpee Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.091657, 40.727539 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12317 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434610", "POINTID": "1102653979228", "FULLNAME": "Flora", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.099988, 40.733930 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067099067", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.089178, 40.734663 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067094640", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.091187, 40.775996 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12300 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439737", "POINTID": "1102654016565", "FULLNAME": "Mount Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.093601, 40.875596 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328451350", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.097426, 41.159792 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439017", "POINTID": "1102654015950", "FULLNAME": "Meredith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.097217, 41.172541 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446380", "POINTID": "1102654022314", "FULLNAME": "Yellow Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.092772, 41.171430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452749", "POINTID": "1102654018435", "FULLNAME": "Resthaven Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.100001, 41.565325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019627581863", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.098571, 41.664753 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019627581863", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.098571, 41.664753 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102607151604", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.092899, 41.669989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015921793222", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.097544, 41.673765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735213298", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.092523, 41.684118 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735215198", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.093743, 41.681045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735227912", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.091692, 41.691301 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047511813", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.094468, 41.698191 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735236134", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.096833, 41.735877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735236274", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.097287, 41.740016 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344847122", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.090350, 41.741152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047510382", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.095589, 41.747350 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732889306", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.099816, 41.759332 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433177", "POINTID": "1102654010919", "FULLNAME": "Crosie Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.079131, 38.006181 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12631 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440566", "POINTID": "1102654017245", "FULLNAME": "Old Goshen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.077744, 38.068125 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433609", "POINTID": "1102653975982", "FULLNAME": "Dogwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.084409, 38.105346 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434607", "POINTID": "1102654012058", "FULLNAME": "Flock Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.081912, 38.268677 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12607 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445350", "POINTID": "1102654021410", "FULLNAME": "Wagner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.086915, 38.278677 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12576 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504031063", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.083964, 38.540701 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12575 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440540", "POINTID": "1102654017184", "FULLNAME": "Old Blue River Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.083586, 38.548390 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440160", "POINTID": "1102654016847", "FULLNAME": "Nicholson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.082475, 38.653944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813204950", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.085144, 38.811245 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441053", "POINTID": "1102654017804", "FULLNAME": "Peters Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.079147, 38.844498 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445593", "POINTID": "1102654021599", "FULLNAME": "Weathers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.079404, 38.859147 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451494", "POINTID": "1102653999159", "FULLNAME": "Spraytown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.079984, 39.014218 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017128761144", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.078103, 39.074812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577535161", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.089033, 39.223232 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475953759", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088425, 39.364557 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440180", "POINTID": "1102653993164", "FULLNAME": "Nineveh", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.084707, 39.362270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699612236", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.081523, 39.476637 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699612254", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.077873, 39.476657 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699612312", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.077771, 39.474047 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113563324", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.083012, 39.485847 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292343", "FULLNAME": "Johnson Memorial Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.078286, 39.480587 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010887154697", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.083495, 39.493299 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113545694", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.083393, 39.499227 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113545194", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.083371, 39.498337 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046727452", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.078723, 39.511998 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052414174", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.079812, 39.520988 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046727464", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.077991, 39.514706 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052414174", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.079812, 39.520988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041352", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.089074, 39.531887 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041412", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.079533, 39.538018 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113561222", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088763, 39.537907 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113558617", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088052, 39.542087 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041418", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.080233, 39.540538 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113561222", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088763, 39.537907 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449539", "POINTID": "1102654002453", "FULLNAME": "West Whiteland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.087478, 39.551436 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046989984", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.080933, 39.554327 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445970", "POINTID": "1102654002788", "FULLNAME": "Whiteland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.079699, 39.550046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041535", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.087593, 39.562377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041523", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.084082, 39.564108 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476008885", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.086987, 39.586271 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013854787901", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.084820, 39.581495 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046044212", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.085694, 39.589317 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046044356", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.079053, 39.588689 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046989068", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088465, 39.601869 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499677701", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.080204, 39.597079 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046967967", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.086955, 39.613359 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113560403", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.080861, 39.608666 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113530010", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.086834, 39.621968 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292370", "FULLNAME": "Greenwood Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.088020, 39.627610 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113553288", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.084023, 39.622929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813435424", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088038, 39.646824 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296190253", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.081041, 39.644323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296189769", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088961, 39.651706 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296189765", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.087620, 39.656058 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296189768", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.085297, 39.651867 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296189287", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088170, 39.659392 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080839124", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088897, 39.669570 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080839120", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.087792, 39.669900 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096276", "POINTID": "1102654016563", "FULLNAME": "Mount Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.082215, 39.673055 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104689805213", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.081722, 39.673763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066775542", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.085407, 39.697636 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977707783", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.083677, 39.705476 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452216", "POINTID": "1102653985005", "FULLNAME": "Ingallston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.084702, 39.725044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452085", "POINTID": "1102653999970", "FULLNAME": "Sunnyview", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.082757, 39.745876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01964591", "POINTID": "1102653958749", "FULLNAME": "Hawthorne Yards", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.087480, 39.755321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096267", "POINTID": "1102654011706", "FULLNAME": "Episcopal Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.083607, 39.840834 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052097149", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.082465, 39.849329 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014221283", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088103, 39.858819 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052097169", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.082824, 39.851227 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052021280", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.085933, 39.867736 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014221039", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.086826, 39.859585 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052021280", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.085933, 39.867736 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438761", "POINTID": "1102653989838", "FULLNAME": "Mayflower Meadows", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.084425, 39.883374 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081781402", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.078669, 39.880146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319716652", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.087845, 39.902208 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430104", "POINTID": "1102653964616", "FULLNAME": "Allisonville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.078315, 39.905041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102931386266", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.083318, 39.951594 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445927", "POINTID": "1102654021858", "FULLNAME": "White Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.082481, 39.956428 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052107072", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.081614, 39.953397 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977542173", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.087558, 39.983052 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259083006", "FULLNAME": "Sunbriar Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.084975, 39.986510 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066292458", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.079442, 39.986295 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259087090", "FULLNAME": "Sue Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.086367, 39.997965 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015500850883", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.082344, 40.027660 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010886846068", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.078399, 40.025158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977513015", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088682, 40.034456 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052505661", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.083452, 40.030108 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977513013", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088604, 40.037637 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066284164", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.087438, 40.052624 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066284176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.083100, 40.047914 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977508262", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.077811, 40.047938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471598639", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.080504, 40.059078 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977508359", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.079493, 40.054511 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066282480", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.077790, 40.056814 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103687142498", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088875, 40.082158 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977536503", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.081775, 40.082260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066283344", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.081059, 40.088127 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12360 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443313", "POINTID": "1102653998182", "FULLNAME": "Sharpsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.088596, 40.379481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066540326", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.084983, 40.446057 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538944", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.087421, 40.468260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12317 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067096761", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.081529, 40.736903 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439580", "POINTID": "1102654016404", "FULLNAME": "Mount Hope Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.081869, 40.759088 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445842", "POINTID": "1102654021755", "FULLNAME": "Westlawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.084436, 40.863929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444507", "POINTID": "1102654020699", "FULLNAME": "Sycamore Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.086660, 41.128930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444507", "POINTID": "1102654020699", "FULLNAME": "Sycamore Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.086660, 41.128930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12255 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444395", "POINTID": "1102653999859", "FULLNAME": "Summit Chapel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.084718, 41.245319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452739", "POINTID": "1102654017949", "FULLNAME": "Pleasant Valley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.080834, 41.681158 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452566", "POINTID": "1102654009706", "FULLNAME": "Chapel Hill Memorial Gnds", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.079168, 41.678936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735100514", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.084774, 41.687714 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344855720", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.083074, 41.681582 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344856276", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.083607, 41.691415 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103776263434", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.080536, 41.708127 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292403", "FULLNAME": "Foos Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.086780, 41.748923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344853052", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088875, 41.756525 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732910140", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.085477, 41.757581 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12638 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437320", "POINTID": "1102654014528", "FULLNAME": "King Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.076631, 38.012293 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12636 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430857", "POINTID": "1102654007415", "FULLNAME": "Beswick Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.076068, 38.029529 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12631 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440566", "POINTID": "1102654017245", "FULLNAME": "Old Goshen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.077744, 38.068125 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442734", "POINTID": "1102654019095", "FULLNAME": "Saint Michaels Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.073855, 38.098680 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12616 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108310927505", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.071489, 38.200652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12575 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01923634", "POINTID": "1102654007839", "FULLNAME": "Blue River Church Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.076086, 38.548669 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01923555", "POINTID": "1102654007851", "FULLNAME": "Blue River Hicksite Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.071642, 38.620056 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12560 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442005", "POINTID": "1102654018536", "FULLNAME": "Ridlen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.075810, 38.679777 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434990", "POINTID": "1102654012404", "FULLNAME": "Gater Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.074700, 38.736998 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434990", "POINTID": "1102654012404", "FULLNAME": "Gater Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.074700, 38.736998 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017128761143", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.076870, 39.074727 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450960", "POINTID": "1102653952145", "FULLNAME": "Gilmore Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.075821, 39.105883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435547", "POINTID": "1102653952327", "FULLNAME": "Guffy Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.076658, 39.246159 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699612459", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.073731, 39.469137 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113564326", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.069931, 39.469597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113561546", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.077953, 39.474127 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699611610", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.070001, 39.478608 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699612442", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.072592, 39.470686 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113563152", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.070821, 39.471456 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699612615", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066683, 39.473057 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047019661", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.075671, 39.484087 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113731339", "FULLNAME": "County Memorial Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.076545, 39.479115 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699611610", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.070001, 39.478608 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699611603", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.072881, 39.478527 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103708190835", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.074501, 39.493378 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699431234", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.071030, 39.488917 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699393899", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.076642, 39.503418 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699419125", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.070671, 39.499237 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046727451", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.075073, 39.511387 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046727464", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.077991, 39.514706 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046727469", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.075153, 39.514868 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113563694", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.077913, 39.536277 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041428", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.076982, 39.545918 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046725662", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.077610, 39.580282 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046044241", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.076223, 39.586107 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499677683", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.077183, 39.596078 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113547574", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.077143, 39.601919 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104975979142", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.069035, 39.648016 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296190464", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.069097, 39.646492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296190768", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.070566, 39.656512 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104975979245", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.069062, 39.650676 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813438764", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.077350, 39.657807 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813438704", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.070859, 39.664652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104689805234", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.077578, 39.671851 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107276928791", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.067613, 39.665308 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104689805322", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.075091, 39.676818 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977606926", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.067061, 39.678236 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104991367933", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066827, 39.674252 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066775729", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.071642, 39.709875 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096274", "POINTID": "1102654016002", "FULLNAME": "Methodist Episcopal Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.077495, 39.716111 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430829", "POINTID": "1102653967735", "FULLNAME": "Benton House", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.076368, 39.764767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449502", "POINTID": "1102653985092", "FULLNAME": "Irvington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.074979, 39.770877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052256950", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.069089, 39.843715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096277", "POINTID": "1102654016701", "FULLNAME": "Negley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.074995, 39.864446 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081781545", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.076618, 39.880416 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449419", "POINTID": "1102653959984", "FULLNAME": "Lakewood Villages Shoppes", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.067203, 39.883929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436863", "POINTID": "1102653985151", "FULLNAME": "Ivy Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.073313, 39.899763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052018625", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.069062, 39.917597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471697017", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.068568, 39.922670 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440323", "POINTID": "1102653993491", "FULLNAME": "Northern Beach", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.070537, 39.955595 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259088453", "FULLNAME": "Shieling Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066720, 39.957984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066300918", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.074445, 39.967496 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066300923", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.071213, 39.967414 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259087679", "FULLNAME": "Timber Crest Bend", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.075352, 39.972399 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066300933", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.071733, 39.970446 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977542138", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.075166, 39.982129 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015682246864", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -86.070526, 39.978456 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105580044891", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.077041, 39.993491 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977541652", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.067380, 39.991490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259086463", "FULLNAME": "Jackie Spring Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.077277, 39.999608 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105580044883", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.071344, 39.999686 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259086288", "FULLNAME": "Weeping Willow Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.067592, 39.994385 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977647876", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.074077, 40.008219 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977647875", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.071253, 40.011159 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489719913", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.073031, 40.026362 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010886845908", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.073050, 40.022745 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489719948", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.074292, 40.028555 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052474471", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.069974, 40.030325 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010886849115", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066683, 40.031163 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066284171", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.076808, 40.048961 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471599150", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.075343, 40.057629 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066289531", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066819, 40.077491 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977536493", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.075451, 40.085267 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066289554", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.070344, 40.083968 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977536488", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.072659, 40.087101 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977536502", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.070494, 40.088353 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977536006", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.074158, 40.099987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292309", "FULLNAME": "McGill Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.067039, 40.119469 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430046", "POINTID": "1102654006431", "FULLNAME": "Albright Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.071650, 40.217535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12366 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435139", "POINTID": "1102654012572", "FULLNAME": "Goar Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.074429, 40.325592 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067098293", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.075175, 40.605105 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441047", "POINTID": "1102653994808", "FULLNAME": "Peru", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.068877, 40.753651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446707", "POINTID": "1102653996473", "FULLNAME": "Ridgeview", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.075547, 40.761437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12308 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433678", "POINTID": "1102653976185", "FULLNAME": "Doyle", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.074155, 40.808097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433483", "POINTID": "1102653975656", "FULLNAME": "Denver", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.077489, 40.866152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12296 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446394", "POINTID": "1102654022339", "FULLNAME": "Yike Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.071934, 40.906150 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292723", "FULLNAME": "Arrowhead Farm Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.069832, 41.292252 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344766648", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.071913, 41.658958 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452723", "POINTID": "1102653994225", "FULLNAME": "Osceola", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.075834, 41.665048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735079631", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.067691, 41.680581 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735089291", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.069550, 41.673327 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110345014380", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.069217, 41.686045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735056143", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.068946, 41.697666 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452738", "POINTID": "1102653995234", "FULLNAME": "Pleasant Vly", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.074448, 41.694215 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472665577", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.068281, 41.696799 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103733106269", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.070926, 41.705753 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103733197115", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.075325, 41.704519 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735056143", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.068946, 41.697666 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103733024661", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.067621, 41.713019 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103733005180", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.068973, 41.722273 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732994662", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.070966, 41.723782 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732922398", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.070864, 41.747927 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8549, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732911386", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.077583, 41.760052 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732921579", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066763, 41.755402 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12641 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444124", "POINTID": "1102654020319", "FULLNAME": "Stephens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.063853, 37.986458 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12628 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433782", "POINTID": "1102654011446", "FULLNAME": "Dunkard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.060243, 38.093958 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12622 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439906", "POINTID": "1102654016642", "FULLNAME": "Musselman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.065800, 38.145900 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12616 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452238", "POINTID": "1102653986094", "FULLNAME": "Kings Store", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.061080, 38.203679 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108310927745", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.063823, 38.202650 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12615 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452238", "POINTID": "1102653986094", "FULLNAME": "Kings Store", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.061080, 38.203679 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433086", "POINTID": "1102653974233", "FULLNAME": "Crandall", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.066353, 38.287562 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431435", "POINTID": "1102653969176", "FULLNAME": "Bradford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.061914, 38.367841 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292534", "FULLNAME": "Rusby Fld", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.057775, 38.443054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12574 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292544", "FULLNAME": "Hardin Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.056198, 38.563655 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103663268527", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.062874, 38.620576 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12566 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01923557", "POINTID": "1102654007858", "FULLNAME": "Blue River Quaker Orthodox Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.058588, 38.631168 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446191", "POINTID": "1102654022081", "FULLNAME": "Winslow Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.062198, 38.666168 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12561 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437062", "POINTID": "1102653952935", "FULLNAME": "Johnson Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.061364, 38.676167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431865", "POINTID": "1102654008919", "FULLNAME": "Burrell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.065811, 38.863387 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444436", "POINTID": "1102654000032", "FULLNAME": "Surprise", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.058869, 38.970608 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00429998", "POINTID": "1102653963985", "FULLNAME": "Acme", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.058869, 38.978106 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450872", "POINTID": "1102653951816", "FULLNAME": "Dug Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.063316, 39.043663 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430859", "POINTID": "1102653967817", "FULLNAME": "Bethany", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.065266, 39.173937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444229", "POINTID": "1102653999647", "FULLNAME": "Stony Lonesome", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.062211, 39.200880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01964857", "POINTID": "1102654018153", "FULLNAME": "Prisoner of War Cp", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.066095, 39.367269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444937", "POINTID": "1102654021073", "FULLNAME": "Tucker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.066648, 39.417824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292355", "FULLNAME": "Franklin Flying Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.057037, 39.425868 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113562374", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.062622, 39.470198 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699612578", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.065513, 39.470046 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113564036", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.062211, 39.465827 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699612749", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.065642, 39.473728 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047018087", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.058261, 39.473078 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699612578", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.065513, 39.470046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113558583", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.057440, 39.499297 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104975979134", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066935, 39.647506 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296190487", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.062850, 39.644048 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977512478", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.055847, 39.647502 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296190701", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.062729, 39.655103 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296190764", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.064695, 39.658459 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296190710", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.059923, 39.656419 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977606926", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.067061, 39.678236 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977606920", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066034, 39.678808 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104991367933", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066827, 39.674252 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014226957", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.058121, 39.698885 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977500728", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.059312, 39.698697 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014223336", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.062718, 39.703955 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977500728", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.059312, 39.698697 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977500145", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.055844, 39.705036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977619847", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.059521, 39.723265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977619938", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.062010, 39.727699 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977619857", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.060658, 39.725411 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452034", "POINTID": "1102653974607", "FULLNAME": "Crossroad Temple", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.066645, 39.752543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449445", "POINTID": "1102653959471", "FULLNAME": "Irvington Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.056925, 39.770321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452382", "POINTID": "1102653961909", "FULLNAME": "Pleasant Run Golf Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.062480, 39.777542 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430156", "POINTID": "1102654006634", "FULLNAME": "Anderson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.057477, 39.781154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072605890", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.063880, 39.833821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449435", "POINTID": "1102653957251", "FULLNAME": "Devington Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.062480, 39.841985 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072605890", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.063880, 39.833821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431482", "POINTID": "1102653969342", "FULLNAME": "Brendonwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.063869, 39.857819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015896779691", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.059913, 39.863707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452336", "POINTID": "1102653958873", "FULLNAME": "Hillcrest Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.059980, 39.870317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107061763859", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.063384, 39.879720 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433515", "POINTID": "1102653975733", "FULLNAME": "Devonshire", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.058869, 39.880597 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430353", "POINTID": "1102653966077", "FULLNAME": "Avalon Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.055814, 39.878096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104979664311", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.065156, 39.889906 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107061763860", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.061965, 39.885370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449418", "POINTID": "1102653956639", "FULLNAME": "Castleton Square Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.063826, 39.908738 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449420", "POINTID": "1102653956630", "FULLNAME": "Castleton Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.058314, 39.906985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052018627", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066176, 39.917488 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104991566105", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.061777, 39.922867 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104991566052", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.060028, 39.922884 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440478", "POINTID": "1102654017118", "FULLNAME": "Oaklawn Memorial Gardens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.064979, 39.931150 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106073823721", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.058073, 39.931093 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066284059", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.064451, 39.941867 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066287261", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.059414, 39.940915 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066291017", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.059215, 39.948664 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066285569", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.056144, 39.943360 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259088453", "FULLNAME": "Shieling Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066720, 39.957984 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444879", "POINTID": "1102654000859", "FULLNAME": "Trails End", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.065814, 39.954205 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977469402", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.064322, 39.967293 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440348", "POINTID": "1102653993541", "FULLNAME": "Northwood Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.061648, 39.961428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066300893", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.064711, 39.973655 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259088152", "FULLNAME": "Shiloh Falls", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066932, 39.979502 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977541654", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.064346, 39.985296 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977542861", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.056211, 39.984916 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066293172", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.057831, 39.979223 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977541653", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066307, 39.986741 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259064926", "FULLNAME": "Sandcherry Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.055720, 39.989979 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977542855", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.055723, 39.987002 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066297289", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066642, 39.996017 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977546826", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.058692, 39.996288 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262958519", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.065224, 40.007282 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052468087", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.062437, 40.018891 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052468093", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.060235, 40.015539 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052516592", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.065108, 40.021681 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052468097", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.060350, 40.019442 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010886849092", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066176, 40.032194 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977652216", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.057523, 40.041355 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066289337", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.060227, 40.059826 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052053895", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066315, 40.066984 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977506800", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.065449, 40.062460 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066300590", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.056083, 40.067446 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066300603", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.055900, 40.064026 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066289531", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066819, 40.077491 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259049107", "FULLNAME": "Yellowwood Cir", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.060924, 40.077608 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066289544", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066168, 40.085318 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066289533", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.064934, 40.078595 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066290220", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.058306, 40.081201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977536269", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.065449, 40.094931 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066290198", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.065679, 40.093559 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066290266", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.056163, 40.086709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977536268", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066251, 40.095965 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292309", "FULLNAME": "McGill Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.067039, 40.119469 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12366 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446670", "POINTID": "1102653985195", "FULLNAME": "Jacksons", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.061096, 40.329203 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292486", "FULLNAME": "Salsbery Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.062391, 40.384862 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449634", "POINTID": "1102653972095", "FULLNAME": "Center", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.060540, 40.434480 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066543495", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.055699, 40.471469 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442889", "POINTID": "1102654019222", "FULLNAME": "Salem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.059988, 40.496705 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12342 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292324", "FULLNAME": "Kokomo Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.057711, 40.527607 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12328 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438308", "POINTID": "1102653988613", "FULLNAME": "Loree", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.058043, 40.645594 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441767", "POINTID": "1102654018280", "FULLNAME": "Rankin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.063633, 40.664951 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442891", "POINTID": "1102654019230", "FULLNAME": "Salem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.064987, 40.694206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12317 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067144264", "FULLNAME": "Municipal Golf Course", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -86.061184, 40.738334 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443838", "POINTID": "1102653998865", "FULLNAME": "South Peru", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.056933, 40.745597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433045", "POINTID": "1102653974100", "FULLNAME": "Courter", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.063046, 40.836984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12303 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433046", "POINTID": "1102654010734", "FULLNAME": "Courter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.058046, 40.847263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12297 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438452", "POINTID": "1102654015365", "FULLNAME": "Macedonia Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.056101, 40.900873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12294 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444757", "POINTID": "1102654020915", "FULLNAME": "Tilden Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.066380, 40.928930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292244", "FULLNAME": "Woodcock Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.062882, 41.073637 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292384", "FULLNAME": "Mentone Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.061216, 41.149472 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292616", "FULLNAME": "Rust's Landing", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.062053, 41.363920 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730228744", "FULLNAME": "Crossview Lane", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.057794, 41.648421 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730229056", "FULLNAME": "Crossview Lane", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.057716, 41.645230 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730228744", "FULLNAME": "Crossview Lane", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.057794, 41.648421 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047512447", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.063721, 41.697041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047511222", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.065596, 41.705148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103733005438", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066042, 41.718975 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333317235", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.056380, 41.714777 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888543258", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -86.062163, 41.724443 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732921918", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.063665, 41.755040 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732921731", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.064934, 41.754256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732921427", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.065999, 41.759354 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732921579", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066763, 41.755402 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814300507", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.057214, 41.759648 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12643 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433335", "POINTID": "1102653975170", "FULLNAME": "Davidson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.047186, 37.967569 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12642 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292319", "FULLNAME": "Cedar Farm Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.054937, 37.974084 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437344", "POINTID": "1102654014578", "FULLNAME": "Kinser Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.046075, 37.973682 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440086", "POINTID": "1102653992701", "FULLNAME": "New Middletown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.050799, 38.163956 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12609 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019665352138", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.055235, 38.263690 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443024", "POINTID": "1102654019314", "FULLNAME": "Sappenfield Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.055248, 38.374784 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12572 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01923564", "POINTID": "1102654017708", "FULLNAME": "Paynter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.051920, 38.580058 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01923559", "POINTID": "1102654016950", "FULLNAME": "Norris Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.051641, 38.595334 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109073268230", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.048779, 38.593514 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441494", "POINTID": "1102653954058", "FULLNAME": "Potato Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.045300, 38.740999 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446300", "POINTID": "1102654022196", "FULLNAME": "Woodmansee Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.048867, 38.873663 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111101330", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.054253, 38.875956 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434273", "POINTID": "1102653978120", "FULLNAME": "Ewing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.055256, 38.884776 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435304", "POINTID": "1102653981278", "FULLNAME": "Grandview Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.046378, 39.152272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113563172", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.054052, 39.459357 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047018113", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.053880, 39.472206 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113731342", "FULLNAME": "Masonic Home", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.048183, 39.472633 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434762", "POINTID": "1102653979839", "FULLNAME": "Franklin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.054977, 39.480601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292376", "FULLNAME": "Canary's Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.050088, 39.513365 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296190813", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.046829, 39.638494 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977512478", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.055847, 39.647502 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977512294", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.053406, 39.643148 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471644479", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.048784, 39.646731 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296190812", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.046834, 39.643660 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052104866", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.051453, 39.656619 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977512441", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.055645, 39.650211 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052105121", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.046888, 39.656289 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471663117", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.053315, 39.663442 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052104858", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.048028, 39.658195 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296183538", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.051099, 39.673430 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052104222", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.048623, 39.673436 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052104495", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.051096, 39.671457 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052104244", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.048631, 39.671613 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296183538", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.051099, 39.673430 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052104213", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.048618, 39.674675 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813435269", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.054591, 39.697597 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104988971669", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.045322, 39.690634 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977500325", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.055935, 39.702855 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977500147", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.054621, 39.705742 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813435271", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.055179, 39.700080 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452215", "POINTID": "1102653995394", "FULLNAME": "Poplar Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.051367, 39.712543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977619805", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.054712, 39.723422 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434544", "POINTID": "1102653978995", "FULLNAME": "Five Points", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.044978, 39.724767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445482", "POINTID": "1102654001863", "FULLNAME": "Warren Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.050257, 39.781986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452262", "POINTID": "1102653955872", "FULLNAME": "Ayr-Way Northeast Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.049981, 39.826709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102176908819", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.050466, 39.856468 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015896673846", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.053349, 39.865317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052019692", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.044817, 39.874838 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430353", "POINTID": "1102653966077", "FULLNAME": "Avalon Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.055814, 39.878096 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052019729", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.045150, 39.882727 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096285", "POINTID": "1102654021941", "FULLNAME": "Whitsell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.050273, 39.900002 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432233", "POINTID": "1102653971761", "FULLNAME": "Castleton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.052201, 39.906985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052017739", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.051595, 39.916624 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292831", "FULLNAME": "Rider Private Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.046089, 39.911983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052018491", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.051593, 39.922902 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977545279", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.053736, 39.940156 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292297", "FULLNAME": "Indianapolis Metropolitan Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.044903, 39.935223 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977609430", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.047317, 39.951894 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107292820997", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.050812, 39.957340 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977609441", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.047164, 39.952928 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977542860", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.054964, 39.985146 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977542858", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.049731, 39.984593 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259064684", "FULLNAME": "McKinges Cir", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.049345, 39.977428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977546821", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.054664, 39.991619 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105580055732", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.044780, 39.990244 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104483892139", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.055688, 40.002520 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052250094", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.054626, 39.997019 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104483892139", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.055688, 40.002520 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445597", "POINTID": "1102654021606", "FULLNAME": "Weaver Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.046647, 40.014483 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051986984", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.046402, 40.045900 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103945192709", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.052952, 40.061328 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103945192701", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.052386, 40.060230 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066300590", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.056083, 40.067446 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066289463", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.054798, 40.068224 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259049177", "FULLNAME": "Sweet Gum Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.056058, 40.073105 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066289504", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.054851, 40.073505 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066290264", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.055286, 40.084489 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066290208", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.054116, 40.080286 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066290238", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.050217, 40.082049 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066290255", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.055216, 40.087491 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066290258", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.053365, 40.086366 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066290348", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.048642, 40.111912 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066293988", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.055262, 40.124984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434323", "POINTID": "1102654011825", "FULLNAME": "Fairview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.048387, 40.276759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051965197", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.053953, 40.284115 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12369 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292463", "FULLNAME": "Tragesser Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.048985, 40.299746 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441385", "POINTID": "1102654017987", "FULLNAME": "Poff Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.051375, 40.446982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441385", "POINTID": "1102654017987", "FULLNAME": "Poff Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.051375, 40.446982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066543495", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.055699, 40.471469 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436452", "POINTID": "1102654013796", "FULLNAME": "Hopewell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.050265, 40.485869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12332 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432664", "POINTID": "1102654010074", "FULLNAME": "Climer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.052486, 40.608094 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440881", "POINTID": "1102653994444", "FULLNAME": "Park View Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.049710, 40.741429 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067094607", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.045048, 40.739724 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440459", "POINTID": "1102653993666", "FULLNAME": "Oakdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.053599, 40.768375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292602", "FULLNAME": "Rush Strip", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.051711, 40.834124 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12297 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438452", "POINTID": "1102654015365", "FULLNAME": "Macedonia Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.056101, 40.900873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440159", "POINTID": "1102654016842", "FULLNAME": "Nichols Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.046381, 41.090875 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12251 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452111", "POINTID": "1102653978022", "FULLNAME": "Etna Green", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.046107, 41.278931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292185", "FULLNAME": "Eby Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.051778, 41.559200 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108918620073", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.053494, 41.654517 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108918630326", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.050375, 41.654587 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730313813", "FULLNAME": "Holben Woods Lane", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.049039, 41.672285 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730295600", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.051708, 41.691529 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730295540", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.046539, 41.691511 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333316740", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.054758, 41.714785 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730232545", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.051552, 41.743366 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729890227", "FULLNAME": "Copperfield Cove", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.051649, 41.739911 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046990495", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.048934, 41.749001 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729888488", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.053577, 41.759976 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444054", "POINTID": "1102654020235", "FULLNAME": "Stallings Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.039912, 37.995305 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112385365", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.033965, 38.290097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112385365", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.033965, 38.290097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431925", "POINTID": "1102653970959", "FULLNAME": "Byrneville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.043581, 38.327564 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12587 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119109692", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.038072, 38.448757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01923626", "POINTID": "1102654016503", "FULLNAME": "Mount Pleasant Church Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.037750, 38.508392 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01923558", "POINTID": "1102654020224", "FULLNAME": "Stalker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.038863, 38.593669 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432116", "POINTID": "1102653971424", "FULLNAME": "Canton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.034697, 38.623945 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445847", "POINTID": "1102654021761", "FULLNAME": "Weston Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.044144, 38.744222 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046958640", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.044495, 38.867541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431647", "POINTID": "1102653970070", "FULLNAME": "Brownstown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.041923, 38.878942 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015481793758", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.034856, 38.883235 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451610", "POINTID": "1102654002062", "FULLNAME": "Waymansville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.043042, 39.063107 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12513 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451244", "POINTID": "1102653991671", "FULLNAME": "Mt Healthy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.037763, 39.080607 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442333", "POINTID": "1102654018705", "FULLNAME": "Roth Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.034155, 39.152827 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440934", "POINTID": "1102653953825", "FULLNAME": "Patterson Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.043878, 39.171715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444598", "POINTID": "1102653954865", "FULLNAME": "Taylor Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.037211, 39.178659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433667", "POINTID": "1102653951747", "FULLNAME": "Dowell Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.037489, 39.192271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446418", "POINTID": "1102654022350", "FULLNAME": "Youngs Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.039979, 39.434215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113574238", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.039211, 39.467046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113731343", "FULLNAME": "Masonic Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.043731, 39.470570 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046992154", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.041169, 39.487226 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046992042", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.039761, 39.486456 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046992041", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.037841, 39.486396 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113563382", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.039171, 39.481607 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046992154", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.041169, 39.487226 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046992040", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.037892, 39.487557 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113569947", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.040480, 39.502706 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699449651", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.038624, 39.497230 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699449542", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.035156, 39.504212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436644", "POINTID": "1102654013987", "FULLNAME": "Hurricane Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.035467, 39.528343 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435096", "POINTID": "1102654012529", "FULLNAME": "Glade Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.042473, 39.585324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103696678030", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.043068, 39.608492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296190850", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.040448, 39.647830 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104762540380", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.039284, 39.656479 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104762540323", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.041674, 39.655413 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104762539931", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.042950, 39.656758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066774469", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.043162, 39.690782 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434544", "POINTID": "1102653978995", "FULLNAME": "Five Points", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.044978, 39.724767 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442572", "POINTID": "1102654018975", "FULLNAME": "Saint Johns Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.036366, 39.725044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103704867931", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.033981, 39.737779 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096258", "POINTID": "1102654008240", "FULLNAME": "Brady Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.040207, 39.754434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449447", "POINTID": "1102653957488", "FULLNAME": "Eastgate Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.043034, 39.775598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066777720", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.036535, 39.791311 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102176976339", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.034595, 39.860878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052019692", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.044817, 39.874838 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052019670", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.038455, 39.875087 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052019676", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.045128, 39.879535 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052019730", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.042688, 39.882767 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052019732", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.039319, 39.879535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104988964752", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.039721, 39.890149 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977755406", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.038686, 39.889229 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319716732", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.035467, 39.908691 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052018148", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.044348, 39.922049 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104486627372", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.035459, 39.943459 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292297", "FULLNAME": "Indianapolis Metropolitan Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.044903, 39.935223 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104486626308", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.040244, 39.948002 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977609081", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.037240, 39.951137 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066292144", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.043846, 39.958613 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107292826236", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.034019, 39.958864 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504478588", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.041432, 39.968053 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107292821001", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.041698, 39.960624 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107292826239", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.036406, 39.963304 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052077745", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.033767, 39.963428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504478589", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.039850, 39.970125 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504478590", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.038444, 39.970432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379841", "FULLNAME": "Prairie View Golf Course", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -86.039909, 39.978113 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105580055732", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.044780, 39.990244 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504478000", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.041786, 39.994348 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051994773", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.044487, 40.039218 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066297412", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.044292, 40.069026 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259025210", "FULLNAME": "Dayflower Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.036569, 40.068219 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977588629", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.037433, 40.061425 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977721022", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.041848, 40.075656 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977501657", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.034354, 40.071768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977721092", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.040987, 40.083077 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977721089", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.039402, 40.080370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066293756", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.043559, 40.091636 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066293745", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.037994, 40.093407 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066293742", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.040823, 40.096004 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110861760579", "FULLNAME": "Cape Henry Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.036156, 40.108497 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110860420682", "FULLNAME": "Sunfish Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.036781, 40.120905 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067450899", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.039407, 40.262372 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067473285", "FULLNAME": "County Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.043007, 40.271837 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262960819", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.035075, 40.277612 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444784", "POINTID": "1102654000685", "FULLNAME": "Tipton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.041094, 40.282257 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12361 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444992", "POINTID": "1102654021111", "FULLNAME": "Turner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.037484, 40.365592 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436002", "POINTID": "1102653983165", "FULLNAME": "Hemlock", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.041373, 40.420037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12336 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445571", "POINTID": "1102654002041", "FULLNAME": "Wawpecong", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.042207, 40.578370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067094607", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.045048, 40.739724 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436695", "POINTID": "1102654014100", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.041381, 41.035319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140520346", "FULLNAME": "Ioof Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.033820, 41.170116 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292377", "FULLNAME": "Heli-Bell Museum Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.042773, 41.171665 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089441345", "FULLNAME": "Mentone", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.034595, 41.173046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12251 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262933709", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.044340, 41.280383 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443473", "POINTID": "1102654019777", "FULLNAME": "Shutts Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.036942, 41.551157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440193", "POINTID": "1102654016907", "FULLNAME": "Noffsinger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.041110, 41.636993 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046988914", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.038125, 41.646978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046988913", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.038058, 41.649084 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333256509", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.035636, 41.690776 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472469597", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.043315, 41.714070 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472469597", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.043315, 41.714070 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730236302", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.040976, 41.736573 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730236349", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.039300, 41.738340 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730232562", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.043962, 41.739727 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072904472", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.042406, 41.755729 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12640 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431598", "POINTID": "1102654008546", "FULLNAME": "Brown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.033026, 37.993962 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12630 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447935", "POINTID": "1102653996275", "FULLNAME": "Rehoboth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.023022, 38.082569 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12629 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447935", "POINTID": "1102653996275", "FULLNAME": "Rehoboth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.023022, 38.082569 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12621 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443294", "POINTID": "1102654019528", "FULLNAME": "Sharon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.030797, 38.157568 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12614 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431467", "POINTID": "1102653969276", "FULLNAME": "Breckenridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.033024, 38.217845 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112385365", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.033965, 38.290097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112385365", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.033965, 38.290097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292283", "FULLNAME": "Byrne Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.032721, 38.330607 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438682", "POINTID": "1102653989610", "FULLNAME": "Martinsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.026082, 38.443949 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12586 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472763789", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.028536, 38.456439 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435806", "POINTID": "1102653982576", "FULLNAME": "Harristown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.024140, 38.597835 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442761", "POINTID": "1102654019137", "FULLNAME": "Saint Pauls Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.031645, 38.831164 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12542 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442761", "POINTID": "1102654019137", "FULLNAME": "Saint Pauls Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.031645, 38.831164 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451612", "POINTID": "1102654021614", "FULLNAME": "Weddell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.029148, 39.013940 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100054542", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.026691, 39.186583 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015503765541", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.024647, 39.184387 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452133", "POINTID": "1102653985757", "FULLNAME": "Kansas", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.032487, 39.331437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292062", "FULLNAME": "Himsel Army Airfield", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.029266, 39.341147 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699459543", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.029242, 39.478695 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699457992", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.030500, 39.478566 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113560066", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.032951, 39.483247 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699457992", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.030500, 39.478566 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476481325", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.022890, 39.481276 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010913777542", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.027085, 39.494042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292332", "FULLNAME": "Woods Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.028976, 39.504477 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292306", "FULLNAME": "Robinson Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.030105, 39.622764 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440195", "POINTID": "1102654016914", "FULLNAME": "Nolan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.025532, 39.622266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292306", "FULLNAME": "Robinson Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.030105, 39.622764 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104975979642", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.029703, 39.646167 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104975979639", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.025940, 39.647960 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104975979350", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.027622, 39.653385 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104975979639", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.025940, 39.647960 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104975979377", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.022804, 39.653515 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104975992733", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.023531, 39.662075 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105013821735", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.023660, 39.656380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104975979812", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.024816, 39.665975 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504278414", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.031758, 39.675472 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104982561656", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.032589, 39.691199 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107277146035", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.029891, 39.706099 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504212563", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.027074, 39.706852 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103704499446", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.027887, 39.715671 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014125607", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.022858, 39.715659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103704499446", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.027887, 39.715671 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014125607", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.022858, 39.715659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977406392", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.026640, 39.731492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103704867931", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.033981, 39.737779 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014136110", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.031165, 39.737796 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471693660", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.024872, 39.738406 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103704881256", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.025513, 39.734477 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066772805", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.028745, 39.744866 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096273", "POINTID": "1102654015843", "FULLNAME": "McVey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.030830, 39.769445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066757671", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.029719, 39.790124 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052067674", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.024164, 39.788040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052068539", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.029161, 39.792187 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104979583940", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.030277, 39.823745 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437666", "POINTID": "1102653987371", "FULLNAME": "Lawrence", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.025256, 39.838653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434356", "POINTID": "1102653978387", "FULLNAME": "Fairwood Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.029979, 39.883374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066776302", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.029030, 39.898555 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066284342", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.023472, 39.947672 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107292826236", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.034019, 39.958864 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107292826235", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.032900, 39.958880 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066286336", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.026007, 39.958833 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435947", "POINTID": "1102654013292", "FULLNAME": "Heady Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.033010, 39.964756 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977637822", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.024660, 39.968458 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066291247", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.028882, 39.976913 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066291241", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.025460, 39.977459 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977638099", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.024331, 39.992737 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977638059", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.025489, 39.989406 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379870", "FULLNAME": "Church of Christ", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -86.023641, 40.049417 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379871", "FULLNAME": "Riverview Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.023612, 40.045934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977503204", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.032141, 40.059485 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439356", "POINTID": "1102653991239", "FULLNAME": "Monterey Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.024424, 40.053648 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103687280974", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.028831, 40.064859 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379833", "FULLNAME": "Fox Prairie Golf Course", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -86.024483, 40.069613 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379833", "FULLNAME": "Fox Prairie Golf Course", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -86.024483, 40.069613 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110861686640", "FULLNAME": "Edgewater Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.032079, 40.109894 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110861531897", "FULLNAME": "Bayswater Ln", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.031953, 40.115172 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110756192284", "FULLNAME": "Lanyard Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.029411, 40.124516 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110756193334", "FULLNAME": "Pleasant Point Cir", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.027241, 40.125080 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110859233916", "FULLNAME": "Lighthouse Pt", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.028362, 40.121387 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066289054", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.029698, 40.133944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12388 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110740686456", "FULLNAME": "Freshwater Ln", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.031725, 40.138336 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443065", "POINTID": "1102654019349", "FULLNAME": "Scherer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.031648, 40.160870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439233", "POINTID": "1102653990739", "FULLNAME": "Millersburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.023869, 40.194760 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430329", "POINTID": "1102653965933", "FULLNAME": "Atlanta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.026380, 40.215314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12377 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435179", "POINTID": "1102654012618", "FULLNAME": "Goodykoontz Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.029148, 40.232536 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067450699", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.030864, 40.275345 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445252", "POINTID": "1102654001454", "FULLNAME": "Vermont", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.031929, 40.499203 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433129", "POINTID": "1102654010877", "FULLNAME": "Crider Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.024988, 40.692540 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12311 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452364", "POINTID": "1102653960829", "FULLNAME": "Mississinewa Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.030655, 40.784573 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067098730", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.025945, 40.785631 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067098742", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.026079, 40.781059 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12309 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443112", "POINTID": "1102654019381", "FULLNAME": "Schrock Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.025267, 40.798930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12302 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432475", "POINTID": "1102653972669", "FULLNAME": "Chili", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.026377, 40.860040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12297 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439907", "POINTID": "1102654016644", "FULLNAME": "Musselman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.027211, 40.904486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328767213", "FULLNAME": "Church of God", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -86.026157, 41.036788 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12280 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430038", "POINTID": "1102653964274", "FULLNAME": "Akron", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.028048, 41.038374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140520346", "FULLNAME": "Ioof Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.033820, 41.170116 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436697", "POINTID": "1102654014104", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.033606, 41.170598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047022466", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.032648, 41.532491 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333252865", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.025090, 41.531224 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047022462", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.031318, 41.536894 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475941153", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.026417, 41.537756 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333252877", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.026798, 41.534720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436932", "POINTID": "1102653985252", "FULLNAME": "Jamestown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.022778, 41.635604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108887274213", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.030374, 41.641604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292255", "FULLNAME": "Mishawaka Pilots Club Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.033447, 41.656423 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015481833310", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.027699, 41.649333 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292255", "FULLNAME": "Mishawaka Pilots Club Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.033447, 41.656423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442146", "POINTID": "1102653962309", "FULLNAME": "Robert R Young Memorial Yard", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.029724, 41.665072 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311336774", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.029102, 41.744917 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12630 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447935", "POINTID": "1102653996275", "FULLNAME": "Rehoboth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.023022, 38.082569 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12629 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447935", "POINTID": "1102653996275", "FULLNAME": "Rehoboth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.023022, 38.082569 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12611 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292261", "FULLNAME": "Greenridge Restricted Landing Area", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.018698, 38.238536 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438683", "POINTID": "1102654015515", "FULLNAME": "Martinsburg Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.021082, 38.443672 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12581 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440094", "POINTID": "1102653992770", "FULLNAME": "New Pekin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.016917, 38.505059 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440094", "POINTID": "1102653992770", "FULLNAME": "New Pekin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.016917, 38.505059 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12574 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434387", "POINTID": "1102653978433", "FULLNAME": "Farabee", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.015806, 38.557003 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440568", "POINTID": "1102654017250", "FULLNAME": "Old Hebron Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.015806, 38.567558 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12572 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01923565", "POINTID": "1102654018014", "FULLNAME": "Poor Farm Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.020806, 38.578668 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12566 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438911", "POINTID": "1102654015815", "FULLNAME": "McKnight Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.015530, 38.626445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445638", "POINTID": "1102654002156", "FULLNAME": "Wegan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.019143, 38.826998 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046959683", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.020342, 38.871431 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046960374", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.016308, 38.873649 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046960373", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.015388, 38.874183 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442172", "POINTID": "1102654018644", "FULLNAME": "Robinson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.016367, 38.943387 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440518", "POINTID": "1102653993849", "FULLNAME": "Ogilville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.015265, 39.125884 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814376616", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.017630, 39.178177 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452333", "POINTID": "1102653958704", "FULLNAME": "Harrison Lake Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.021935, 39.189493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452337", "POINTID": "1102653958926", "FULLNAME": "Hillview Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.021643, 39.484214 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699460828", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.016179, 39.486907 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052421100", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.020559, 39.494986 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699461078", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.020680, 39.488097 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699460819", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.016560, 39.488687 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446067", "POINTID": "1102654022031", "FULLNAME": "Williams Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.019975, 39.565601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442221", "POINTID": "1102653996827", "FULLNAME": "Rocklane", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.012475, 39.609767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104975979377", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.022804, 39.653515 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471692605", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.021753, 39.657301 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471599356", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.017118, 39.662438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066759616", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.021407, 39.678666 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096256", "POINTID": "1102654007610", "FULLNAME": "Big Run Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.018207, 39.674304 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449074", "POINTID": "1102653980195", "FULLNAME": "Galader Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.016088, 39.684767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104762503973", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.012918, 39.695575 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014125607", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.022858, 39.715659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977398499", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.019747, 39.720161 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103704881226", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.022563, 39.733295 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072687280", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.017601, 39.742362 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436861", "POINTID": "1102653985138", "FULLNAME": "Ivanhoe", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.012754, 39.767544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445507", "POINTID": "1102654001909", "FULLNAME": "Washington Place", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.016367, 39.776988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052341775", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.021951, 39.787630 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052341699", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.020736, 39.792642 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052341676", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.014709, 39.795263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449448", "POINTID": "1102653961198", "FULLNAME": "North Eastwood Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.012478, 39.823654 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106253883904", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.013065, 39.819905 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449449", "POINTID": "1102653957799", "FULLNAME": "Esquire Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.021107, 39.837248 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096282", "POINTID": "1102654021356", "FULLNAME": "Vine Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.016045, 39.835848 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102177308452", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.018840, 39.844055 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471656936", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.020267, 39.863373 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471656974", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.019854, 39.862146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052019841", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.023046, 39.883685 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052019843", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.022161, 39.881536 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292656", "FULLNAME": "Ft Benjamin Harrison Helipad", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.016643, 39.883374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104982661778", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.021635, 39.908981 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977545802", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.012894, 39.932335 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066287356", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.011931, 39.929445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066287316", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.020248, 39.950720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066286896", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.021895, 39.953617 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434526", "POINTID": "1102653978896", "FULLNAME": "Fishers", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.013867, 39.955595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977637830", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.015935, 39.968845 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977637825", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.019497, 39.968329 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977637831", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.015560, 39.968053 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066288374", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.011920, 39.967299 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013845451162", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.022989, 39.973803 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977722974", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.020039, 39.976575 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977637828", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.017255, 39.970405 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066288090", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.017585, 39.980505 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379848", "FULLNAME": "New Britton Elemtary Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.016292, 39.978978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977638057", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.020299, 39.990933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259061055", "FULLNAME": "Harrison Pointe", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.018537, 39.997287 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977723102", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.013545, 39.993921 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066288576", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.020527, 40.003188 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977542516", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.011992, 40.005776 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977542520", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.011802, 40.003085 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012028369076", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.016139, 40.012201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442084", "POINTID": "1102654018571", "FULLNAME": "Riverside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.018867, 40.044206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445795", "POINTID": "1102654002425", "FULLNAME": "West Noblesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.020814, 40.048095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105317161829", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.018081, 40.056791 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379832", "FULLNAME": "Forest Park Golf Course", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -86.016904, 40.055030 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110860722555", "FULLNAME": "Quarter Path Rd", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.022295, 40.119740 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1101956359947", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.021329, 40.126615 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432518", "POINTID": "1102653972754", "FULLNAME": "Cicero", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.013336, 40.123897 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12388 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110742454201", "FULLNAME": "Iron Bridge Rd", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.017528, 40.139528 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110742452258", "FULLNAME": "Anchor Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.015281, 40.139142 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430234", "POINTID": "1102653965400", "FULLNAME": "Arcadia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.021648, 40.175871 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106243055082", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.014699, 40.178088 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444403", "POINTID": "1102654020587", "FULLNAME": "Sumner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.014696, 40.224991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066538509", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.013588, 40.486822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12342 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438706", "POINTID": "1102654015564", "FULLNAME": "Mast Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.012762, 40.530314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12337 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436064", "POINTID": "1102654013415", "FULLNAME": "Hershberger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.011931, 40.571983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12330 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438876", "POINTID": "1102653990022", "FULLNAME": "McGrawsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.013875, 40.630317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12321 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452094", "POINTID": "1102653993718", "FULLNAME": "Oakley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.012486, 40.701984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12289 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435069", "POINTID": "1102653980681", "FULLNAME": "Gilead", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.018601, 40.970318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12280 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328448598", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.016901, 41.041752 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438379", "POINTID": "1102653988749", "FULLNAME": "Lowman Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.018325, 41.070598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430677", "POINTID": "1102653967200", "FULLNAME": "Beaver Dm", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.013325, 41.086152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443221", "POINTID": "1102653998043", "FULLNAME": "Sevastopol", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.018880, 41.129209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441358", "POINTID": "1102654017979", "FULLNAME": "Pletcher Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.020830, 41.530604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452499", "POINTID": "1102654001665", "FULLNAME": "Wakarusa", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.020830, 41.536157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436932", "POINTID": "1102653985252", "FULLNAME": "Jamestown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.022778, 41.635604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730312436", "FULLNAME": "Buttercup Lane", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.022330, 41.697442 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730312425", "FULLNAME": "Heritage Road", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.022536, 41.698485 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730312436", "FULLNAME": "Buttercup Lane", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.022330, 41.697442 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432141", "POINTID": "1102654009305", "FULLNAME": "Carlton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.017778, 41.738661 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432141", "POINTID": "1102654009305", "FULLNAME": "Carlton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.017778, 41.738661 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730309639", "FULLNAME": "Thoreau Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.021316, 41.754526 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730309623", "FULLNAME": "Twain Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.015691, 41.754122 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730309647", "FULLNAME": "Golden Pond Trail", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.015707, 41.755424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440026", "POINTID": "1102653992304", "FULLNAME": "New Boston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.010796, 37.999794 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452322", "POINTID": "1102653957938", "FULLNAME": "Floyd Country Conservation Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.007468, 38.314787 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12585 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435240", "POINTID": "1102654012660", "FULLNAME": "Goss Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.004694, 38.464783 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12581 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449044", "POINTID": "1102653993924", "FULLNAME": "Old Pekin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.003305, 38.497282 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444579", "POINTID": "1102654020780", "FULLNAME": "Tash Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.009973, 38.508669 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12574 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01923627", "POINTID": "1102654007841", "FULLNAME": "Blue River Church Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.004418, 38.560335 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437063", "POINTID": "1102653952945", "FULLNAME": "Johnson Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.008031, 38.733944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12534 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442163", "POINTID": "1102654018641", "FULLNAME": "Robertson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.005813, 38.905052 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12533 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443375", "POINTID": "1102653998281", "FULLNAME": "Shields", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.003313, 38.915886 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440282", "POINTID": "1102653993383", "FULLNAME": "North Ogilville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.007768, 39.131997 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430138", "POINTID": "1102653964980", "FULLNAME": "Amity", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.001089, 39.426158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438872", "POINTID": "1102654015717", "FULLNAME": "McGill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.000808, 39.536713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096275", "POINTID": "1102654016243", "FULLNAME": "Morris Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.009436, 39.662777 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104762503986", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.010488, 39.694844 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440019", "POINTID": "1102654001814", "FULLNAME": "Wanamaker", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.009699, 39.704488 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096265", "POINTID": "1102654011276", "FULLNAME": "Deutsch Evangelical Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.009160, 39.726112 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977406346", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.001762, 39.759177 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439001", "POINTID": "1102654015920", "FULLNAME": "Memorial Park Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.002626, 39.777286 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066932", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.011434, 39.790888 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066928", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.010222, 39.792512 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081820086", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.004378, 39.808641 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081820086", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.004378, 39.808641 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052097444", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.007792, 39.834857 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052097905", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.002417, 39.834779 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104991549221", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.005397, 39.853163 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096269", "POINTID": "1102654013795", "FULLNAME": "Hopewell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.009994, 39.905280 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977545801", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.010147, 39.933220 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052073421", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.008385, 39.942998 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052073133", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.005853, 39.942320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052072839", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.006615, 39.944039 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052072221", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.004764, 39.943798 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066288429", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.009452, 39.968785 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066288374", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.011920, 39.967299 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066287480", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.012076, 39.970943 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066289133", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.010895, 39.971015 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440027", "POINTID": "1102653992327", "FULLNAME": "New Britton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.009978, 39.979761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102970396004", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.012164, 39.991182 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102970395887", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.010391, 39.992881 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102970396095", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.009356, 39.989342 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977542409", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.009603, 40.001443 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977542516", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.011992, 40.005776 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977542608", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.011147, 40.010327 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259062249", "FULLNAME": "Saint James Place", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.010088, 40.015995 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259038370", "FULLNAME": "Gloucester Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.008868, 40.024032 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066283305", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.005284, 40.027386 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066289906", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.000842, 40.020284 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977645814", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.005169, 40.036361 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379843", "FULLNAME": "Elem Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.011271, 40.050296 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440192", "POINTID": "1102653993192", "FULLNAME": "Noblesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.008591, 40.045592 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433219", "POINTID": "1102654011029", "FULLNAME": "Crownland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.001368, 40.052538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977495488", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.006655, 40.061236 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977495487", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.005721, 40.061222 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066293719", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.007915, 40.067062 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066300834", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.004147, 40.069178 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977495488", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.006655, 40.061236 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977495487", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.005721, 40.061222 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066300831", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.002122, 40.070876 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066300624", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.000869, 40.071173 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12387 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379866", "FULLNAME": "Indiana Acdmy", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.010724, 40.149603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439663", "POINTID": "1102654016490", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.001092, 40.172260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12358 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440011", "POINTID": "1102653992234", "FULLNAME": "Nevada", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.004150, 40.395310 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12339 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436265", "POINTID": "1102654013678", "FULLNAME": "Hochstedler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.010262, 40.554205 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12337 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436064", "POINTID": "1102654013415", "FULLNAME": "Hershberger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.011931, 40.571983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439936", "POINTID": "1102653992045", "FULLNAME": "Nappanee", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.001384, 41.442825 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1101916202987", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.007545, 41.435948 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046592229", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.004560, 41.435761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1101916202547", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.010383, 41.448692 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439936", "POINTID": "1102653992045", "FULLNAME": "Nappanee", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.001384, 41.442825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888579923", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -86.001677, 41.507764 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046960523", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.005689, 41.539918 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311335209", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.006228, 41.640147 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311335304", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.006336, 41.639247 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311335211", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.006183, 41.641199 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442857", "POINTID": "1102654019191", "FULLNAME": "Saint Vincent Depaul Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.003610, 41.673104 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292247", "FULLNAME": "Elkhart Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.001942, 41.718837 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446910", "POINTID": "1102653958326", "FULLNAME": "Granger Service Area", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.004445, 41.731993 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12609 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011022327247", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.996489, 38.257195 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292557", "FULLNAME": "Spring Lake Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.995918, 38.474492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435026", "POINTID": "1102653980539", "FULLNAME": "Georgetown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.998308, 38.648389 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119109086", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.993389, 38.762667 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119109086", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.993389, 38.762667 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445528", "POINTID": "1102654021563", "FULLNAME": "Waskom Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.998308, 38.784776 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441176", "POINTID": "1102653953991", "FULLNAME": "Pinnacle", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.992756, 38.876720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010881946277", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.990170, 39.179533 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262910363", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.990733, 39.189793 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104469049007", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.992836, 39.187913 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100052469", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.989808, 39.185493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262910993", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.990449, 39.191593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435661", "POINTID": "1102654013095", "FULLNAME": "Hamner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.000534, 39.414492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430138", "POINTID": "1102653964980", "FULLNAME": "Amity", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.001089, 39.426158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113578474", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.992919, 39.495507 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113578474", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.992919, 39.495507 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438872", "POINTID": "1102654015717", "FULLNAME": "McGill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.000808, 39.536713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504203578", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.993697, 39.704267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431829", "POINTID": "1102653970650", "FULLNAME": "Burge Terrace", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.996366, 39.743377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977406248", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.997482, 39.757107 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977406326", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.998010, 39.759117 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452090", "POINTID": "1102654001857", "FULLNAME": "Warren Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.997476, 39.781986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014155097", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.994609, 39.791467 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977469001", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.991315, 39.792646 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052096168", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.990532, 39.832964 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104991550680", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.992984, 39.867701 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292708", "FULLNAME": "Fort Benjamin Harrison Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.997755, 39.865039 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104991550667", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.992949, 39.866853 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014478126", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.993488, 39.875525 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444884", "POINTID": "1102654000968", "FULLNAME": "Trilobi Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.996645, 39.879208 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104979599676", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.994486, 39.878039 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434374", "POINTID": "1102653978402", "FULLNAME": "Fall Creek Highland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.991090, 39.896708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106049934549", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.998278, 39.902996 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442885", "POINTID": "1102654019215", "FULLNAME": "Salem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.992756, 39.905039 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107060996414", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.998214, 39.928259 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813382818", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.998962, 39.937199 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813382822", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.992361, 39.937162 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813382825", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.997428, 39.951283 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259129323", "FULLNAME": "Claymount Lane", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.997490, 39.945666 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813382824", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.991522, 39.950212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813382823", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.993174, 39.952885 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977723889", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.996047, 39.973858 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977723890", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.995052, 39.973100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977723893", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.997179, 39.978382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977723680", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.995545, 39.990877 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977723681", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.995288, 39.991775 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977723666", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.991227, 39.998497 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259219172", "FULLNAME": "Cliffwood Place", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.991366, 39.995339 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977620570", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.999558, 40.015711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066288601", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.000164, 40.024934 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066289906", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.000842, 40.020284 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012028358350", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.991546, 40.023412 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436642", "POINTID": "1102654013977", "FULLNAME": "Hurlock Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.991699, 40.028898 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105578903001", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.999855, 40.061216 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066300829", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.998426, 40.069712 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259039287", "FULLNAME": "Green Meadows Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.999397, 40.067653 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105578903001", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.999855, 40.061216 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066300624", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.000869, 40.071173 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105578902928", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.992989, 40.070013 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052090727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.989920, 40.071046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439440", "POINTID": "1102654016241", "FULLNAME": "Morley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.998034, 40.130870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439663", "POINTID": "1102654016490", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.001092, 40.172260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442990", "POINTID": "1102654019274", "FULLNAME": "Sandbank Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.990258, 40.291982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432396", "POINTID": "1102654009696", "FULLNAME": "Chandler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.994985, 40.431982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12338 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066540313", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.997857, 40.559448 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12323 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437279", "POINTID": "1102654014489", "FULLNAME": "Keyes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.995819, 40.685597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12320 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440062", "POINTID": "1102654016755", "FULLNAME": "New Hope Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.998318, 40.708096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292646", "FULLNAME": "Goodenough Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.999265, 40.739193 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434754", "POINTID": "1102654012180", "FULLNAME": "Francis Godfroy Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.993043, 40.750874 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12309 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434228", "POINTID": "1102653977939", "FULLNAME": "Erie", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.991377, 40.801151 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12294 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443436", "POINTID": "1102654019727", "FULLNAME": "Shoemaker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.991932, 40.927542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12272 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435657", "POINTID": "1102654013090", "FULLNAME": "Hamman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.995548, 41.108098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12253 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106044684244", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.992412, 41.267372 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140043347", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.992326, 41.434486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046592245", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.995328, 41.436431 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140043347", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.992326, 41.434486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047045309", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.999483, 41.450338 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047045308", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.994620, 41.450857 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047036420", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.999617, 41.455201 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047045329", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.995333, 41.454805 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047045308", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.994620, 41.450857 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888545247", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -85.994451, 41.659718 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108674909464", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.990497, 41.734029 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12639 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434253", "POINTID": "1102653978068", "FULLNAME": "Evans Landing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.984685, 38.004237 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12632 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431763", "POINTID": "1102653970393", "FULLNAME": "Buena Vista", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.979961, 38.058958 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12623 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292272", "FULLNAME": "Robinson Airpark", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.986434, 38.143172 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12622 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292272", "FULLNAME": "Robinson Airpark", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.986434, 38.143172 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443433", "POINTID": "1102654019724", "FULLNAME": "Shoemaker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.979948, 38.177272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12612 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437616", "POINTID": "1102653987171", "FULLNAME": "Lanesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.985798, 38.237011 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431913", "POINTID": "1102654009036", "FULLNAME": "Buttontown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.985245, 38.352563 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435458", "POINTID": "1102653981717", "FULLNAME": "Greenville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.986359, 38.372564 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449853", "POINTID": "1102653962055", "FULLNAME": "Pulltight", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.989414, 38.427839 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449853", "POINTID": "1102653962055", "FULLNAME": "Pulltight", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.989414, 38.427839 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12571 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443780", "POINTID": "1102653998756", "FULLNAME": "South Boston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.979138, 38.582836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438388", "POINTID": "1102654015290", "FULLNAME": "Lubker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.983864, 38.823109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12534 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433813", "POINTID": "1102654011457", "FULLNAME": "Durland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.989422, 38.906998 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440042", "POINTID": "1102653992468", "FULLNAME": "New Elizabethtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.986922, 38.917274 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103541144696", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.984666, 39.150231 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262907433", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.983700, 39.181250 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010881946277", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.990170, 39.179533 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262907414", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.980517, 39.180893 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100052469", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.989808, 39.185493 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262907640", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.978923, 39.185520 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100053802", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.985221, 39.189572 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12479 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434816", "POINTID": "1102654012221", "FULLNAME": "Freeman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.989427, 39.376158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445178", "POINTID": "1102654001230", "FULLNAME": "Urmeyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.985251, 39.521992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292607", "FULLNAME": "Marshall Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.980366, 39.642532 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432424", "POINTID": "1102653972446", "FULLNAME": "Charlesmac Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.979141, 39.684210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107277177282", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.984832, 39.698747 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107277177318", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.987426, 39.697114 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104762505467", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.983016, 39.698433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107277058541", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.986479, 39.707246 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504214859", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.984009, 39.707263 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504241560", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.989365, 39.702973 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107277177282", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.984832, 39.698747 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103704492432", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.980055, 39.704131 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103704488570", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.981933, 39.698577 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103704490229", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.978961, 39.699859 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107277058541", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.986479, 39.707246 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504214859", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.984009, 39.707263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430774", "POINTID": "1102653967462", "FULLNAME": "Belle Arbor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.987477, 39.720321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444405", "POINTID": "1102653999882", "FULLNAME": "Sun Down", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.989698, 39.725877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441336", "POINTID": "1102654017950", "FULLNAME": "Pleasant View Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.980254, 39.739487 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504260773", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.986388, 39.744517 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471601332", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.986259, 39.754406 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977405697", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.981246, 39.752189 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066771451", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.979937, 39.749287 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016954035326", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.979959, 39.762680 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977468932", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.978805, 39.764057 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449451", "POINTID": "1102653963471", "FULLNAME": "Washington Shoppes", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.988987, 39.773753 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977468566", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.980066, 39.769422 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449450", "POINTID": "1102653963492", "FULLNAME": "Washington Square Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.986018, 39.780067 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977469054", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.989628, 39.791020 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977469160", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.989330, 39.796246 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052341197", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.982831, 39.801611 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052096176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.988979, 39.832787 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052095987", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.984154, 39.832363 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259057367", "FULLNAME": "Bellchime Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.982274, 39.835568 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014478284", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.985398, 39.865891 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014478283", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.983953, 39.867355 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014478084", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.988866, 39.876050 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066772841", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.981490, 39.876106 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014478122", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.988826, 39.874949 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104991549632", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.980423, 39.872347 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014478289", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.978872, 39.868288 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107276823312", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.989320, 39.878734 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977554585", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.984309, 39.878376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436772", "POINTID": "1102653984894", "FULLNAME": "Indian Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.986922, 39.885319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434162", "POINTID": "1102654011656", "FULLNAME": "Emery Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.988866, 39.895041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471660685", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.979508, 39.918052 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052019109", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.979087, 39.922565 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471660685", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.979508, 39.918052 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471660671", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.979004, 39.918685 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435908", "POINTID": "1102653982871", "FULLNAME": "Hawthorn Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.980254, 39.944483 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259211007", "FULLNAME": "Stonebridge Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.984832, 39.956502 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259211055", "FULLNAME": "Reflection Point Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.980825, 39.953212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102966290368", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.984827, 39.966429 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102966290383", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.983140, 39.965175 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977723888", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.990030, 39.972374 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977723882", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.989017, 39.975747 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977723694", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.983813, 39.974123 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499142758", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.985540, 39.984369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977723673", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.987979, 39.993105 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104745537387", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.989387, 40.002382 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977723667", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.985637, 39.996921 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104745537387", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.989387, 40.002382 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104476014514", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.981437, 40.010569 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499197233", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.984175, 40.018332 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066300862", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.989719, 40.026037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977493015", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.979970, 40.029804 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977493756", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.983877, 40.038776 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105578902908", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.989062, 40.067478 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105578902832", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.984138, 40.068969 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977692779", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.978910, 40.066384 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052090727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.989920, 40.071046 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977692828", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.983486, 40.072866 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446438", "POINTID": "1102654022397", "FULLNAME": "Zimmer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.981088, 40.087815 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431886", "POINTID": "1102654009008", "FULLNAME": "Buscher Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.980535, 40.161981 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431886", "POINTID": "1102654009008", "FULLNAME": "Buscher Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.980535, 40.161981 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434817", "POINTID": "1102654012223", "FULLNAME": "Freeman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.980538, 40.452538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066541653", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.981356, 40.480524 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435442", "POINTID": "1102654012874", "FULLNAME": "Greenlawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.987761, 40.485594 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066541653", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.981356, 40.480524 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12337 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437236", "POINTID": "1102654014423", "FULLNAME": "Kendall Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.988040, 40.564761 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443460", "POINTID": "1102654019738", "FULLNAME": "Shrock Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.982762, 40.564204 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12336 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435033", "POINTID": "1102654012442", "FULLNAME": "Gerber Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.985540, 40.579206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436053", "POINTID": "1102654013414", "FULLNAME": "Herchberger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.988317, 40.583927 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12327 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443023", "POINTID": "1102653997670", "FULLNAME": "Santa Fe", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.986096, 40.653095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434432", "POINTID": "1102654011897", "FULLNAME": "Fegley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.987764, 40.672261 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12324 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440116", "POINTID": "1102653992906", "FULLNAME": "New Santa Fe", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.987764, 40.673651 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434432", "POINTID": "1102654011897", "FULLNAME": "Fegley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.987764, 40.672261 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12299 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441069", "POINTID": "1102653994865", "FULLNAME": "Pettysville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.981654, 40.881430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12292 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434219", "POINTID": "1102654011700", "FULLNAME": "Enterprise Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.986377, 40.942820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12286 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434913", "POINTID": "1102654012296", "FULLNAME": "Gaerte Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.984712, 40.993652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12253 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017128761314", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.983690, 41.268521 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435250", "POINTID": "1102654012678", "FULLNAME": "Graber Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.988882, 41.361156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110334915257", "FULLNAME": "Religious Instn", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -85.989030, 41.444735 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333237070", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.982287, 41.645406 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888546161", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -85.984752, 41.659639 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333256743", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.978907, 41.720693 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333256706", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.980737, 41.725500 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108674920777", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.989183, 41.733935 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046731958", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.984945, 41.748915 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046731975", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.981718, 41.756495 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12625 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434068", "POINTID": "1102653977371", "FULLNAME": "Elizabeth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.974130, 38.121180 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12623 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443225", "POINTID": "1102653998053", "FULLNAME": "Seven Springs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.976630, 38.142012 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12613 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292307", "FULLNAME": "Lanesville Skyways Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.973690, 38.223111 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103717981486", "FULLNAME": "Lasy Creek Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.973540, 38.270930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089463398", "FULLNAME": "Georgetown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.975630, 38.294618 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011135074547", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.973672, 38.329696 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011135074592", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.968114, 38.328894 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106047897322", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.973479, 38.335473 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476461194", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.972757, 38.372957 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12571 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443780", "POINTID": "1102653998756", "FULLNAME": "South Boston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.979138, 38.582836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12566 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440097", "POINTID": "1102653992791", "FULLNAME": "New Philadelphia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.969946, 38.626479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442379", "POINTID": "1102654018746", "FULLNAME": "Rucker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.976920, 38.812000 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432995", "POINTID": "1102654010671", "FULLNAME": "Cortland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.973033, 38.972551 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010881935862", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.975152, 39.181169 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100053051", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.971065, 39.172989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262909299", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.977920, 39.189206 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010881935862", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.975152, 39.181169 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262910097", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.976995, 39.191693 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262911499", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.968018, 39.194397 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292004", "FULLNAME": "Strietelmeier Flying Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.973441, 39.207486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100067226", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.969329, 39.300442 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100067208", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.970346, 39.299836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444568", "POINTID": "1102654020775", "FULLNAME": "Tannehill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.970820, 39.302271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441351", "POINTID": "1102653995246", "FULLNAME": "Pleasant View Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.973597, 39.333661 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046726867", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.970649, 39.339365 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433234", "POINTID": "1102653974699", "FULLNAME": "Cuba", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.969152, 39.345881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443657", "POINTID": "1102654019924", "FULLNAME": "Smiley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.969217, 39.451670 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439969", "POINTID": "1102653992164", "FULLNAME": "Needham", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.971083, 39.530046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441839", "POINTID": "1102653996229", "FULLNAME": "Reds Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.971641, 39.601156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104975994404", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.973999, 39.647405 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104991769649", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.973953, 39.643164 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104975994394", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.976794, 39.651295 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104975994403", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.973068, 39.648929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432416", "POINTID": "1102653972430", "FULLNAME": "Charle Sumac Estates", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.974420, 39.678655 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436756", "POINTID": "1102653984837", "FULLNAME": "Indian Creek Estates", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.970810, 39.678655 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432424", "POINTID": "1102653972446", "FULLNAME": "Charlesmac Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.979141, 39.684210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504247893", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.974342, 39.695971 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103704492460", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.978636, 39.703524 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096260", "POINTID": "1102654008767", "FULLNAME": "Buck Creek Christian Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.974994, 39.717501 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096264", "POINTID": "1102654011153", "FULLNAME": "Davis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.976660, 39.730834 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438400", "POINTID": "1102654015302", "FULLNAME": "Luebking Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.973033, 39.756432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977468895", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.976582, 39.766028 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977468974", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.972183, 39.763544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977468530", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.976670, 39.769368 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096268", "POINTID": "1102654012478", "FULLNAME": "German Church Road Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.969160, 39.774446 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066773225", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.968364, 39.766249 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445505", "POINTID": "1102654021553", "FULLNAME": "Washington Park Cemetery East", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.974975, 39.778099 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096280", "POINTID": "1102654018996", "FULLNAME": "Saint John's Evangeline Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.969994, 39.777501 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066773151", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.975632, 39.786041 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066773155", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.972092, 39.784802 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052341200", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.974079, 39.796461 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977754411", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.970158, 39.793990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052341193", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.978111, 39.801843 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052098518", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.972803, 39.824762 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104990430057", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.977472, 39.827069 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104991564842", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.969769, 39.830264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445703", "POINTID": "1102654021669", "FULLNAME": "Wesley Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.973033, 39.840873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102177680791", "FULLNAME": "Winterwood Ln Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.971196, 39.850698 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102177680793", "FULLNAME": "Brianna Ln Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.969563, 39.851561 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102177680791", "FULLNAME": "Winterwood Ln Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.971196, 39.850698 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436505", "POINTID": "1102654013835", "FULLNAME": "Hoss Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.976644, 39.860874 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104991549631", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.979216, 39.871878 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014478290", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.976885, 39.871894 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052019540", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.968739, 39.874107 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066773276", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.974570, 39.876207 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432030", "POINTID": "1102653956534", "FULLNAME": "Camp Elm", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.977754, 39.884763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444796", "POINTID": "1102654020961", "FULLNAME": "Todd Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.976367, 39.896985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437375", "POINTID": "1102654014599", "FULLNAME": "Klepfer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.973589, 39.901986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052019109", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.979087, 39.922565 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052019347", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.976799, 39.922839 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066293814", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.972567, 39.935733 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066283753", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.972542, 39.950673 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259211182", "FULLNAME": "Rockingham Cir", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.967993, 39.949225 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977726429", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.970992, 39.960428 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259136731", "FULLNAME": "Lake Stonebridge Lane", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.973570, 39.953806 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977587958", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.972483, 39.963699 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977541974", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.978017, 39.975244 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977723692", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.978202, 39.980559 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052346782", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.973894, 39.989797 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052085306", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.970362, 40.006824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010886860480", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.973125, 40.015968 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104745595447", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.969774, 40.012527 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977493014", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.978140, 40.027586 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259043406", "FULLNAME": "Ptarmigan Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.971679, 40.023513 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977621556", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.970131, 40.022533 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319750588", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.969294, 40.027799 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977493014", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.978140, 40.027586 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015500869538", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.978068, 40.037735 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489689387", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.973269, 40.038220 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977692831", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.978602, 40.069059 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977692818", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.978540, 40.072429 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105578902869", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.971161, 40.072045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442117", "POINTID": "1102653996709", "FULLNAME": "Riverwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.968034, 40.100592 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292284", "FULLNAME": "Fowler Field /pvt/", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.977041, 40.430301 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435564", "POINTID": "1102653982010", "FULLNAME": "Guy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.975538, 40.435315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499677190", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.973304, 40.469388 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499677208", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.967857, 40.470174 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499677220", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.968415, 40.473883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12341 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441359", "POINTID": "1102653995274", "FULLNAME": "Plevna", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.976094, 40.535871 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12327 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441753", "POINTID": "1102654018262", "FULLNAME": "Ramer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.969984, 40.655040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431833", "POINTID": "1102653970661", "FULLNAME": "Burket", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.968602, 41.155321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430332", "POINTID": "1102653965956", "FULLNAME": "Atwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.975270, 41.260876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047305712", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.978277, 41.455680 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431785", "POINTID": "1102654008799", "FULLNAME": "Bull Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.976662, 41.508093 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333255271", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.976729, 41.638721 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333255266", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.977625, 41.644845 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333346446", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.977971, 41.664028 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311344063", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.969166, 41.666190 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333256743", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.978907, 41.720693 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045890313", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.968238, 41.728889 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047044321", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.967905, 41.745211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452104", "POINTID": "1102653998486", "FULLNAME": "Simonton Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.974999, 41.754216 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046731849", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.976748, 41.755216 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104258987849", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.970732, 41.759026 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12620 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445118", "POINTID": "1102654021223", "FULLNAME": "Union Church Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.959963, 38.168401 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015922726548", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.967527, 38.268412 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015922726556", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.967610, 38.265600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011017761005", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.965022, 38.300877 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011017708001", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.961618, 38.301163 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011135074592", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.968114, 38.328894 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262908745", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.959105, 38.329515 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047878758", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.963305, 38.441086 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109073256348", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.961202, 38.688638 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432994", "POINTID": "1102653973934", "FULLNAME": "Cortland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.964144, 38.973108 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100088114", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.966982, 39.171170 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814361803", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.964381, 39.167373 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814361806", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.966770, 39.179136 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046718149", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.967194, 39.173821 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100094165", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.961629, 39.176011 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105027739688", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.966937, 39.186656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262911499", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.968018, 39.194397 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100063876", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.967406, 39.196420 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103721068031", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.956956, 39.191741 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046043320", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.957844, 39.350342 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434019", "POINTID": "1102653977178", "FULLNAME": "Edinburgh", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.966650, 39.354215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439971", "POINTID": "1102654016664", "FULLNAME": "Needham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.967194, 39.500326 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446026", "POINTID": "1102654021981", "FULLNAME": "Wiles Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.961084, 39.530046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00429999", "POINTID": "1102653964000", "FULLNAME": "Acton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.966921, 39.655601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437144", "POINTID": "1102653985707", "FULLNAME": "Julietta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.957198, 39.737544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437369", "POINTID": "1102654014594", "FULLNAME": "Kitley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.965531, 39.755599 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439861", "POINTID": "1102654016599", "FULLNAME": "Muesing Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.958866, 39.750320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066776755", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.967599, 39.763026 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977466717", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.967575, 39.769603 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096263", "POINTID": "1102654011041", "FULLNAME": "Cumberland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.958050, 39.774722 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485245014", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.962677, 39.783215 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066778692", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.959359, 39.781842 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433243", "POINTID": "1102653974757", "FULLNAME": "Cumberland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.957198, 39.776155 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096263", "POINTID": "1102654011041", "FULLNAME": "Cumberland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.958050, 39.774722 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066771587", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.963570, 39.785507 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066771589", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.962449, 39.785612 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485244918", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.967433, 39.797984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104979526684", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.961135, 39.805909 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105013810431", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.960105, 39.816155 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066774435", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.958799, 39.810615 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104988947181", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.957222, 39.825578 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052257916", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.966558, 39.821973 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102177015614", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.962157, 39.829963 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104474459956", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.958590, 39.833755 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102177572659", "FULLNAME": "Flatstick Ct Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.964040, 39.847177 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102177572754", "FULLNAME": "Baysdon Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.959520, 39.849137 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977473726", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.961342, 39.858852 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102177572963", "FULLNAME": "Sandwood Ct Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.960081, 39.851792 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439303", "POINTID": "1102654016129", "FULLNAME": "Mock Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.966089, 39.867262 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440474", "POINTID": "1102653993710", "FULLNAME": "Oaklandon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.956921, 39.872819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11018383840097", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.963989, 39.914900 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11018383840136", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.962750, 39.911578 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104991568673", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.961229, 39.911590 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259211182", "FULLNAME": "Rockingham Cir", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.967993, 39.949225 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977623972", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.956881, 39.950516 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977726428", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.967739, 39.957992 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436155", "POINTID": "1102654013534", "FULLNAME": "Highland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.967476, 39.952262 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015795921173", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.957047, 39.958196 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977623971", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.959579, 39.953543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977587961", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.967567, 39.963952 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977622626", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.957042, 39.964914 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977622631", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.957002, 39.964250 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813382827", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.966634, 39.971303 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015795912939", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.959201, 39.971348 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259058151", "FULLNAME": "Myrtle Lane", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.961291, 39.984585 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977491527", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.962787, 39.989747 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052351266", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.960797, 39.990902 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977539816", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.963726, 40.008445 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292269", "FULLNAME": "Noblesville Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.964520, 40.003500 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471617063", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.962479, 40.011067 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977494191", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.961942, 40.027658 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977621586", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.966923, 40.023708 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052081021", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.960025, 40.026218 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977494192", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.967047, 40.028910 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977494191", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.961942, 40.027658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977494324", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.963541, 40.036747 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977494323", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.958335, 40.040245 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105578902868", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.967631, 40.071725 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259024500", "FULLNAME": "Hall Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.965856, 40.090922 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259024426", "FULLNAME": "Sylvan Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.964858, 40.089707 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319750465", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.958721, 40.090378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442117", "POINTID": "1102653996709", "FULLNAME": "Riverwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.968034, 40.100592 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447639", "POINTID": "1102653972841", "FULLNAME": "Clare", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.961089, 40.115315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12361 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431579", "POINTID": "1102654008535", "FULLNAME": "Brookside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.964702, 40.369481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066540922", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.961207, 40.472186 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435455", "POINTID": "1102653981710", "FULLNAME": "Greentown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.966650, 40.478092 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066540909", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.962372, 40.474834 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12332 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449702", "POINTID": "1102653993281", "FULLNAME": "North Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.966094, 40.612260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12331 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440262", "POINTID": "1102654016974", "FULLNAME": "North Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.964429, 40.615872 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12319 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441011", "POINTID": "1102653994704", "FULLNAME": "Peoria", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.960540, 40.718652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047305713", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.966368, 41.447620 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730234610", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.958348, 41.634085 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441560", "POINTID": "1102654018085", "FULLNAME": "Prairie Street Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.961108, 41.656161 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435264", "POINTID": "1102654012693", "FULLNAME": "Grace Lawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.956943, 41.678660 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045890304", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.959936, 41.722233 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045890303", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.964249, 41.721146 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045890305", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.957391, 41.721246 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045890302", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.964944, 41.723248 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045890304", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.959936, 41.722233 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046957060", "FULLNAME": "Elkhart Campground", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.958713, 41.736961 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047044321", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.967905, 41.745211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730318337", "FULLNAME": "Laverna Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.961739, 41.747452 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046731607", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.964705, 41.757197 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046965430", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.962211, 41.757391 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12623 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437329", "POINTID": "1102654014552", "FULLNAME": "Kingery Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.947740, 38.138403 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12618 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444537", "POINTID": "1102654020715", "FULLNAME": "Tabler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.949687, 38.178679 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12609 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107062604084", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.946085, 38.262465 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107062604036", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.946463, 38.258661 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107062604083", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.945865, 38.263812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107062604086", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.951219, 38.267809 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011018976978", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.953338, 38.293821 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476476552", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.947740, 38.297317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016953625300", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.954904, 38.305362 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048176138", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.951999, 38.300548 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011019347456", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.949264, 38.300340 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011135073636", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.948617, 38.337085 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441297", "POINTID": "1102654017934", "FULLNAME": "Pleasant Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.948580, 38.425618 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12585 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048010138", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.946133, 38.469441 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12557 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441643", "POINTID": "1102653995801", "FULLNAME": "Pumpkin Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.950527, 38.704223 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447648", "POINTID": "1102654000286", "FULLNAME": "Tampico", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.956087, 38.800054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431275", "POINTID": "1102653968733", "FULLNAME": "Bobtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.946091, 39.019496 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045747665", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.955154, 39.172133 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814361778", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.949532, 39.172538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045747660", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.955264, 39.175183 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814362703", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.949524, 39.173420 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814361779", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.951924, 39.172569 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814361778", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.949532, 39.172538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103721068031", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.956956, 39.191741 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449405", "POINTID": "1102653963606", "FULLNAME": "West Hill Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.952343, 39.201475 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096651498", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.947483, 39.237815 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100050705", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.951605, 39.242426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12493 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438357", "POINTID": "1102653988700", "FULLNAME": "Lowell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.946378, 39.253105 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100066768", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.952048, 39.261826 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440261", "POINTID": "1102653993278", "FULLNAME": "North Gate", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.946378, 39.263938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100087849", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.950130, 39.279463 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100066933", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.952549, 39.287514 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103723366600", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.949111, 39.284106 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440284", "POINTID": "1102653993386", "FULLNAME": "North Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.954156, 39.296715 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444607", "POINTID": "1102654000372", "FULLNAME": "Taylorsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.950811, 39.295884 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444862", "POINTID": "1102654021007", "FULLNAME": "Treadway Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.947485, 39.318097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046648880", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.956565, 39.359368 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273384447", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.946458, 39.357863 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046697330", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.947877, 39.351637 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046648879", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.956642, 39.360418 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445612", "POINTID": "1102654021608", "FULLNAME": "Webb Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.948585, 39.522823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476155970", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.947571, 39.727501 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437144", "POINTID": "1102653985707", "FULLNAME": "Julietta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.957198, 39.737544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104988435796", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.956251, 39.761136 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104988432983", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.954247, 39.769849 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433243", "POINTID": "1102653974757", "FULLNAME": "Cumberland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.957198, 39.776155 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052102245", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.955698, 39.782262 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052101983", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.954191, 39.778641 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110157029", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.946251, 39.791729 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110156163", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.951640, 39.790532 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110178075", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.948590, 39.798173 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110175152", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.945844, 39.795669 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081619196", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.955376, 39.802280 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110177722", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.948824, 39.804308 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104988947181", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.957222, 39.825578 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104988947181", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.957222, 39.825578 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104474455663", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.956425, 39.831537 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102177572856", "FULLNAME": "Hammock Glen Dr Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.956363, 39.849323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440474", "POINTID": "1102653993710", "FULLNAME": "Oaklandon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.956921, 39.872819 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977499274", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.949387, 39.874290 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977499270", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.945876, 39.871721 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102178408714", "FULLNAME": "White Oak Trail Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.953045, 39.884551 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438811", "POINTID": "1102654015676", "FULLNAME": "McCord Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.947753, 39.884207 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014215963", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.947882, 39.877773 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440475", "POINTID": "1102654017114", "FULLNAME": "Oaklandon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.955811, 39.885319 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102178408722", "FULLNAME": "Van Spronsen Ct Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.949312, 39.887198 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014206253", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.951723, 39.901329 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014206261", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.952895, 39.897568 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014209338", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.955151, 39.909378 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977496951", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.945884, 39.906195 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014209756", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.952608, 39.914540 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014209758", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.948244, 39.914244 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014209347", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.948137, 39.909625 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066284183", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.946579, 39.933045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977695451", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.948346, 39.939344 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977623972", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.956881, 39.950516 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977623973", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.951265, 39.951084 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015795921173", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.957047, 39.958196 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977622659", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.947346, 39.960338 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977622922", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.956420, 39.956921 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066298609", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.951804, 39.952895 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977622626", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.957042, 39.964914 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977622627", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.954177, 39.965878 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104469977491", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.949068, 39.966826 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977622659", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.947346, 39.960338 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977622660", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.945932, 39.961730 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015795912023", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.956632, 39.971328 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105594518341", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.951409, 39.972841 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977589307", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.952817, 39.993434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066300871", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.955253, 40.007110 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977471264", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.947587, 40.008125 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489541497", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.956229, 40.019310 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977472177", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.955953, 40.015167 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977472176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.953257, 40.013125 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977472175", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.952954, 40.010736 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010886861952", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.955843, 40.020253 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010886899265", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.950076, 40.022625 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489684971", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.949714, 40.019064 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499143346", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.951643, 40.034745 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019641376211", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.953987, 40.028569 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499143046", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.948145, 40.031307 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319750461", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.956213, 40.090996 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319750460", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.954067, 40.089428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435538", "POINTID": "1102654012975", "FULLNAME": "Grubbs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.946922, 40.131426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436258", "POINTID": "1102653983962", "FULLNAME": "Hobbs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.947480, 40.283649 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446173", "POINTID": "1102654003087", "FULLNAME": "Windfall", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.956369, 40.363092 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12357 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442888", "POINTID": "1102654019221", "FULLNAME": "Salem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.955814, 40.402815 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066542244", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.950229, 40.474820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12342 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066540353", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.954172, 40.524850 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432601", "POINTID": "1102654009995", "FULLNAME": "Clayton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.954985, 40.726984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12296 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434489", "POINTID": "1102654011970", "FULLNAME": "Finley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.953322, 40.906430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139971928", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.955650, 41.079994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440837", "POINTID": "1102653994359", "FULLNAME": "Palestine", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.949714, 41.178375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436157", "POINTID": "1102654013537", "FULLNAME": "Highland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.949159, 41.260876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439193", "POINTID": "1102654016092", "FULLNAME": "Miller Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.955344, 41.555993 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491908", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.950476, 41.656104 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047036315", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.948317, 41.649226 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435264", "POINTID": "1102654012693", "FULLNAME": "Grace Lawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.956943, 41.678660 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441936", "POINTID": "1102654018462", "FULLNAME": "Rice Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.949164, 41.682548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046957072", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.951181, 41.706449 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104494781403", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.945948, 41.714825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046591784", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.954003, 41.728827 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046591785", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.949408, 41.728861 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046591801", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.946316, 41.752005 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046965290", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.952828, 41.759348 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472556449", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.951364, 41.759354 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046591790", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.946249, 41.755957 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12633 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435706", "POINTID": "1102653982370", "FULLNAME": "Happy Holw", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.937738, 38.053403 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438335", "POINTID": "1102653988671", "FULLNAME": "Lottick Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.940241, 38.171176 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12618 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435988", "POINTID": "1102654013373", "FULLNAME": "Heistand Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.945243, 38.179790 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12609 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107062604084", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.946085, 38.262465 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107062604083", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.945865, 38.263812 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107062604035", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.943076, 38.258353 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107062604082", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.944387, 38.264415 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107062604303", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.936142, 38.265842 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12607 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102588755544", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.939693, 38.280338 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106047861830", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.939723, 38.281991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106047843501", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.942909, 38.298626 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102588962924", "FULLNAME": "Woodwind Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.945444, 38.296303 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012812689268", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.941815, 38.301310 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013023948672", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.936491, 38.317167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108257401", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.943840, 38.331896 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015484716993", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.941461, 38.328256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108267207", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.941837, 38.347731 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108249609", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.940514, 38.346768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434921", "POINTID": "1102653980213", "FULLNAME": "Galena", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.941633, 38.351730 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439953", "POINTID": "1102653992100", "FULLNAME": "Navilleton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.938578, 38.381729 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12585 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048010138", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.946133, 38.469441 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431353", "POINTID": "1102653968910", "FULLNAME": "Borden", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.945761, 38.466726 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048002868", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.941617, 38.492300 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431400", "POINTID": "1102653951071", "FULLNAME": "Bowers Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.939691, 38.513392 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452098", "POINTID": "1102653974982", "FULLNAME": "Daisy Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.939415, 38.506170 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12578 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431237", "POINTID": "1102653968604", "FULLNAME": "Blue River", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.939415, 38.530060 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12557 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452182", "POINTID": "1102653981108", "FULLNAME": "Gooseport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.940807, 38.710056 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471723186", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.935767, 38.933953 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431275", "POINTID": "1102653968733", "FULLNAME": "Bobtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.946091, 39.019496 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452228", "POINTID": "1102653958609", "FULLNAME": "Hansells Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.937199, 39.130597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262893916", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.942164, 39.150793 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096651499", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.946112, 39.237738 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100053633", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.939685, 39.237322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262900677", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.944087, 39.245700 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432973", "POINTID": "1102653973877", "FULLNAME": "Corn Brook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.939157, 39.244493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12493 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262901954", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.943931, 39.249992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017128704112", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.944784, 39.263105 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431556", "POINTID": "1102654008496", "FULLNAME": "Brockman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.941370, 39.413659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273340853", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.939621, 39.558531 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052160162", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.938165, 39.622231 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438662", "POINTID": "1102654015508", "FULLNAME": "Martin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.934975, 39.648933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441335", "POINTID": "1102653995240", "FULLNAME": "Pleasant View", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.941641, 39.663378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110106102", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.945511, 39.723705 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110174189", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.941839, 39.760779 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110157029", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.946251, 39.791729 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434504", "POINTID": "1102654011986", "FULLNAME": "Fish Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.946088, 39.784486 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110156879", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.944900, 39.791286 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110157029", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.946251, 39.791729 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110175152", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.945844, 39.795669 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110130913", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.936633, 39.793198 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443729", "POINTID": "1102654019970", "FULLNAME": "Snider Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.943030, 39.807265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110107714", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.939806, 39.825500 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110107714", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.939806, 39.825500 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977499270", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.945876, 39.871721 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010947405697", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.937148, 39.870472 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109098025930", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.937145, 39.881536 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109098025928", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.934967, 39.882989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102178409716", "FULLNAME": "Glossbrenner Ct Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.946050, 39.886609 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014212200", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.945782, 39.892036 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110107362", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.936241, 39.889151 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977497002", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.945597, 39.897385 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014207509", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.945240, 39.908792 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977497193", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.938999, 39.906259 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431083", "POINTID": "1102654007620", "FULLNAME": "Bills Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.942199, 39.920041 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730958406", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.937113, 39.922470 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977626770", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.944776, 39.932642 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977723959", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.939570, 39.951925 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977723963", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.938634, 39.951279 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977622662", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.945559, 39.959849 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977723948", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.941410, 39.956588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104469978091", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.944350, 39.968411 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105594519980", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.935413, 39.960256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977633409", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.935954, 39.976545 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012815398533", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.935566, 39.969611 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015488913711", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.941528, 39.982610 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434233", "POINTID": "1102654011711", "FULLNAME": "Ervin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.936335, 40.001567 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104747940024", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.946123, 40.007625 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103945188071", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.944052, 40.015444 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103945188070", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.938752, 40.015494 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489684828", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.945801, 40.022178 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444227", "POINTID": "1102654020449", "FULLNAME": "Stony Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.941649, 40.038349 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444266", "POINTID": "1102653999694", "FULLNAME": "Strawtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.944422, 40.123370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445421", "POINTID": "1102654001801", "FULLNAME": "Walnut Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.939699, 40.161983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292346", "FULLNAME": "Ward Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.939535, 40.166136 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445421", "POINTID": "1102654001801", "FULLNAME": "Walnut Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.939699, 40.161983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292213", "FULLNAME": "Cruzan Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.943440, 40.171932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440661", "POINTID": "1102653994024", "FULLNAME": "Omega", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.939144, 40.198372 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436261", "POINTID": "1102654013667", "FULLNAME": "Hobbs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.938867, 40.218925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292470", "FULLNAME": "Ellison Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.941204, 40.293913 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12357 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445884", "POINTID": "1102654021804", "FULLNAME": "Wheeler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.942204, 40.399203 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436997", "POINTID": "1102654014236", "FULLNAME": "Jerome Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.937204, 40.456703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12331 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440876", "POINTID": "1102654017626", "FULLNAME": "Park Lawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.938317, 40.614207 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12299 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063058195", "FULLNAME": "Reed Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.938924, 40.881489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12295 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444180", "POINTID": "1102653999544", "FULLNAME": "Stockdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.944154, 40.915041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12291 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439790", "POINTID": "1102654016594", "FULLNAME": "Moyer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.945543, 40.952264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12285 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433567", "POINTID": "1102653975897", "FULLNAME": "Disko", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.944433, 41.002263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434766", "POINTID": "1102654012187", "FULLNAME": "Franklin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.941099, 41.071154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434766", "POINTID": "1102654012187", "FULLNAME": "Franklin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.941099, 41.071154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12272 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434328", "POINTID": "1102654011835", "FULLNAME": "Fairview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.944712, 41.108098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445067", "POINTID": "1102654021215", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.936936, 41.232820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292220", "FULLNAME": "Nappanee Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.936043, 41.446154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443890", "POINTID": "1102653998992", "FULLNAME": "Southwest", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.943883, 41.536714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446381", "POINTID": "1102654022315", "FULLNAME": "Yellow Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.943607, 41.556992 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436302", "POINTID": "1102654013697", "FULLNAME": "Hoke Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.944717, 41.550880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445675", "POINTID": "1102654021649", "FULLNAME": "Wenger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.945272, 41.587270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108892788766", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.935142, 41.620544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333256103", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.941920, 41.634933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747293", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.936368, 41.654996 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747272", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.937687, 41.671045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045890329", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.937483, 41.693292 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046591658", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.943719, 41.705162 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333157723", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.939409, 41.701737 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435447", "POINTID": "1102653981661", "FULLNAME": "Greenleaf Manor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.936942, 41.698659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045890323", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.942416, 41.708021 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104494781403", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.945948, 41.714825 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333256779", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.936303, 41.721596 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046591797", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.945034, 41.752039 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046965271", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.936440, 41.753648 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046591790", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.946249, 41.755957 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046965272", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.940450, 41.757041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12635 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442313", "POINTID": "1102653997068", "FULLNAME": "Rosewood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.929128, 38.038125 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12611 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436095", "POINTID": "1102653952618", "FULLNAME": "Hickman Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.931076, 38.241178 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107062604307", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.933055, 38.268814 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107062603201", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.928586, 38.272436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12607 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107062602877", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.933439, 38.280113 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107062602874", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.933704, 38.282884 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433768", "POINTID": "1102653976350", "FULLNAME": "Duncan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.924965, 38.288122 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108274909", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.931840, 38.330556 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013849741625", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.931572, 38.340562 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439558", "POINTID": "1102654016371", "FULLNAME": "Mount Eden Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.925800, 38.400064 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452121", "POINTID": "1102653972615", "FULLNAME": "Chestnut Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.932747, 38.475894 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12581 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449834", "POINTID": "1102653951631", "FULLNAME": "Daisy Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.929987, 38.499215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452307", "POINTID": "1102653957339", "FULLNAME": "Dudleytown Conservation Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.926363, 38.852833 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12531 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471723191", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.933994, 38.932086 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433089", "POINTID": "1102654010827", "FULLNAME": "Crane Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.931089, 38.938386 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111110479", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.928240, 38.938793 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111141887", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.925926, 38.949263 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435680", "POINTID": "1102653982329", "FULLNAME": "Hangman Crossing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.926642, 38.943387 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442328", "POINTID": "1102653997088", "FULLNAME": "Rosstown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.929429, 39.109218 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430961", "POINTID": "1102653967896", "FULLNAME": "Bethel Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.924708, 39.151995 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100480462", "FULLNAME": "4 H Fairgrounds", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -85.932663, 39.174266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434943", "POINTID": "1102653980264", "FULLNAME": "Garden City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.933321, 39.183383 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100058229", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.933640, 39.235033 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434926", "POINTID": "1102654012353", "FULLNAME": "Gallagher Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.923863, 39.569490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434753", "POINTID": "1102654012164", "FULLNAME": "Francis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.929418, 39.593656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072533947", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.924263, 39.608360 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436523", "POINTID": "1102654013852", "FULLNAME": "House Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.925802, 39.622485 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433287", "POINTID": "1102654011077", "FULLNAME": "Dake Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.926905, 39.631178 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052159267", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.932272, 39.624716 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436523", "POINTID": "1102654013852", "FULLNAME": "House Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.925802, 39.622485 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433287", "POINTID": "1102654011077", "FULLNAME": "Dake Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.926905, 39.631178 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438662", "POINTID": "1102654015508", "FULLNAME": "Martin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.934975, 39.648933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273337360", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.932460, 39.664131 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504191238", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.931344, 39.689011 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443071", "POINTID": "1102654019354", "FULLNAME": "Schildmeier Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.933031, 39.731711 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110127926", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.928890, 39.731991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110127969", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.930322, 39.733264 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110106210", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.926183, 39.734955 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718608196", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.930000, 39.768486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109098045963", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.926363, 39.781343 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110130938", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.934637, 39.794013 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443158", "POINTID": "1102654019435", "FULLNAME": "Scotten Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.926642, 39.810875 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110107061", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.927087, 39.839193 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010947405990", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.933948, 39.864316 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110107675", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.928702, 39.866039 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010947406043", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.923941, 39.864899 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110173645", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.927967, 39.867771 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109098025928", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.934967, 39.882989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110129176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.932669, 39.884994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103726416607", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.930700, 39.911222 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110107340", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.930850, 39.926035 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110174270", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.929418, 39.925432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977469103", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.933637, 39.941150 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977468821", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.924233, 39.938877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105594519979", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.933774, 39.958029 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296206790", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.928785, 39.958794 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066288873", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.924391, 39.955282 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012815398532", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.934541, 39.967348 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296206758", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.930303, 39.960716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259056887", "FULLNAME": "Witherbee Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.932604, 39.969496 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977487087", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.925843, 39.971229 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977487056", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.924512, 39.968637 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504604686", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.934774, 39.985173 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015488913530", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.933642, 39.980540 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432129", "POINTID": "1102654009275", "FULLNAME": "Carey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.930255, 40.133093 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436996", "POINTID": "1102653985425", "FULLNAME": "Jerome", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.930815, 40.455315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436996", "POINTID": "1102653985425", "FULLNAME": "Jerome", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.930815, 40.455315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434847", "POINTID": "1102654012239", "FULLNAME": "Friends Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.930260, 40.605040 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430130", "POINTID": "1102653964877", "FULLNAME": "Amboy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.928857, 40.601427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12328 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431313", "POINTID": "1102654007975", "FULLNAME": "Bond Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.933039, 40.639205 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440305", "POINTID": "1102654017002", "FULLNAME": "North Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.927208, 40.729484 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12296 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442128", "POINTID": "1102653996741", "FULLNAME": "Roann", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.924386, 40.911709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12294 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436692", "POINTID": "1102654014081", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.924153, 40.927819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12291 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443388", "POINTID": "1102654019688", "FULLNAME": "Shiloh Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.924987, 40.953652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12288 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062986271", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.924386, 40.971964 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432695", "POINTID": "1102654010139", "FULLNAME": "Clunette Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.928047, 41.327268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432695", "POINTID": "1102654010139", "FULLNAME": "Clunette Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.928047, 41.327268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435865", "POINTID": "1102653982824", "FULLNAME": "Hastings", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.929437, 41.383655 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435362", "POINTID": "1102653981429", "FULLNAME": "Gravelton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.924161, 41.435880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434635", "POINTID": "1102653979323", "FULLNAME": "Foraker", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.924161, 41.515882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108892788766", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.935142, 41.620544 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108892783178", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.933409, 41.620544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108892778166", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.930032, 41.624864 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108892773339", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.928603, 41.624161 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747370", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.925845, 41.648076 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747377", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.925770, 41.649978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747273", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.929914, 41.662717 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747295", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.928173, 41.660178 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747271", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.931861, 41.668706 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747277", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.927814, 41.665090 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747237", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.931376, 41.676975 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730312722", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.928203, 41.673501 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433916", "POINTID": "1102653976833", "FULLNAME": "East Lake Estates", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.929718, 41.697826 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045890437", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.935236, 41.711511 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333152495", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.931287, 41.706918 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045890440", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.924045, 41.709071 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333256805", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.929504, 41.722367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047023341", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.926218, 41.739663 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046965273", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.934541, 41.756319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12634 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449854", "POINTID": "1102653962338", "FULLNAME": "Rosewood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.919491, 38.045721 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12631 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434532", "POINTID": "1102653978922", "FULLNAME": "Fishtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.917461, 38.069514 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12627 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438880", "POINTID": "1102653953521", "FULLNAME": "McHarry Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.916350, 38.108402 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107062603588", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.915846, 38.271170 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12607 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107062603112", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.923683, 38.277687 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107062603113", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.921977, 38.276087 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107062603589", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.914701, 38.273535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013024828381", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.923080, 38.311348 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013023533818", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.916098, 38.356656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439644", "POINTID": "1102654016460", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.915803, 38.506170 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12558 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292569", "FULLNAME": "Little York Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.917890, 38.695264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108644758570", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.921564, 38.942154 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108644758738", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.918078, 38.941647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262917532", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.921867, 38.944545 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262933710", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.914955, 38.950425 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108644758570", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.921564, 38.942154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438416", "POINTID": "1102654015319", "FULLNAME": "Lutheran Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.917302, 38.952960 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262933375", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.913400, 38.964339 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445368", "POINTID": "1102654001728", "FULLNAME": "Walesboro", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.914430, 39.145330 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432826", "POINTID": "1102653973660", "FULLNAME": "Columbus", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.921377, 39.201438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100058352", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.919370, 39.232369 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100058617", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.917960, 39.231748 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100063076", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.914647, 39.228119 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100058634", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.918499, 39.240808 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100058352", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.919370, 39.232369 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434663", "POINTID": "1102653979478", "FULLNAME": "Forest Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.914711, 39.235883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100058179", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.922653, 39.245484 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442106", "POINTID": "1102653996699", "FULLNAME": "Riverview Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.921100, 39.242271 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100058634", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.918499, 39.240808 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262932658", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.913078, 39.248126 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12493 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100062692", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.913499, 39.257207 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434568", "POINTID": "1102653979157", "FULLNAME": "Flat Rock Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.915543, 39.252827 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100066562", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.920435, 39.258922 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100062710", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.917096, 39.258995 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444112", "POINTID": "1102654020295", "FULLNAME": "Steenbarger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.923598, 39.310882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432893", "POINTID": "1102654010526", "FULLNAME": "Conover Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.914980, 39.403380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431294", "POINTID": "1102653968749", "FULLNAME": "Boggstown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.916364, 39.563101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434926", "POINTID": "1102654012353", "FULLNAME": "Gallagher Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.923863, 39.569490 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292512", "FULLNAME": "Williams Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.916659, 39.564720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436514", "POINTID": "1102654013843", "FULLNAME": "Hough Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.922197, 39.576991 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431295", "POINTID": "1102654007938", "FULLNAME": "Boggstown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.919974, 39.572269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444677", "POINTID": "1102654000559", "FULLNAME": "The Red Mills", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.922474, 39.581433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072533947", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.924263, 39.608360 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438238", "POINTID": "1102653988467", "FULLNAME": "London", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.920253, 39.625600 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438239", "POINTID": "1102653988474", "FULLNAME": "London Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.914419, 39.628656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444312", "POINTID": "1102653999748", "FULLNAME": "Sugar Creek", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.913030, 39.640599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433590", "POINTID": "1102654011347", "FULLNAME": "Dobel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.919974, 39.650599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096298", "POINTID": "1102653960097", "FULLNAME": "Links Golf Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.921106, 39.694165 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110124920", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.919644, 39.726129 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110107158", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.924276, 39.734485 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110172115", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.917756, 39.733743 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476149924", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.916940, 39.745266 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476149923", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.915108, 39.744835 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443111", "POINTID": "1102654019375", "FULLNAME": "Schramm Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.918032, 39.757266 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110105721", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.916339, 39.751529 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441977", "POINTID": "1102654018492", "FULLNAME": "Richmond Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.913032, 39.752265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437620", "POINTID": "1102654014802", "FULLNAME": "Langenberger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.923587, 39.760321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475985156", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.923394, 39.808606 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475985155", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.923380, 39.807699 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431868", "POINTID": "1102654008927", "FULLNAME": "Burris Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.919698, 39.805041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475985157", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.924239, 39.809956 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475985156", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.923394, 39.808606 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439557", "POINTID": "1102653991644", "FULLNAME": "Mt Comfort", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.915253, 39.830876 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109098026501", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -85.915165, 39.826954 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110107056", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.921929, 39.839559 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110128849", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.917367, 39.845192 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441234", "POINTID": "1102653995157", "FULLNAME": "Pleasant Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.915532, 39.856153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010947406024", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.923474, 39.865844 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010947406019", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.922900, 39.869366 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010947422562", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.913558, 39.870916 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01699782", "POINTID": "1102653989943", "FULLNAME": "McCordsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.922755, 39.908096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103891565693", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.917184, 39.917881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110174294", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.919832, 39.921105 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110105739", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.917099, 39.919385 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103891551477", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.915910, 39.918146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110147260", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.922956, 39.927008 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977468821", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.924233, 39.938877 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431576", "POINTID": "1102654008529", "FULLNAME": "Brooks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.918866, 39.942540 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066281606", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.920872, 39.955309 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977483144", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.914073, 39.960143 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296206801", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.924112, 39.961888 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977483141", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.913507, 39.963837 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977483144", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.914073, 39.960143 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01964869", "POINTID": "1102653993989", "FULLNAME": "Olio", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.920886, 39.971556 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977486560", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.915857, 39.979619 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259050193", "FULLNAME": "Chorleywood Cir", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.917329, 39.976980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292277", "FULLNAME": "Galloway Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.915664, 40.041376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292322", "FULLNAME": "Creekside Farm Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.920921, 40.068080 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12375 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436260", "POINTID": "1102654013668", "FULLNAME": "Hobbs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.920255, 40.247259 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440061", "POINTID": "1102654016754", "FULLNAME": "New Hope Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.920813, 40.413369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440061", "POINTID": "1102654016754", "FULLNAME": "New Hope Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.920813, 40.413369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444505", "POINTID": "1102654000134", "FULLNAME": "Sycamore", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.919427, 40.494204 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439665", "POINTID": "1102654016496", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.913040, 40.730041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292508", "FULLNAME": "Heck Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.917485, 40.751429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12311 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449717", "POINTID": "1102653996435", "FULLNAME": "Richvalley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.920264, 40.785040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12310 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441980", "POINTID": "1102654018508", "FULLNAME": "Richvalley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.919706, 40.792263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12302 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436579", "POINTID": "1102654013894", "FULLNAME": "Huff Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.918874, 40.858653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12299 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434933", "POINTID": "1102654012366", "FULLNAME": "Gamble Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.923598, 40.881986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12294 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436692", "POINTID": "1102654014081", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.924153, 40.927819 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063058197", "FULLNAME": "Roann Community Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.922879, 40.927837 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432694", "POINTID": "1102653973219", "FULLNAME": "Clunette", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.922769, 41.319767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435362", "POINTID": "1102653981429", "FULLNAME": "Gravelton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.924161, 41.435880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434635", "POINTID": "1102653979323", "FULLNAME": "Foraker", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.924161, 41.515882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046986058", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.920148, 41.614702 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046986053", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.917380, 41.610146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431835", "POINTID": "1102654008883", "FULLNAME": "Burkett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.918045, 41.617548 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046986059", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.917184, 41.615364 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047287513", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.924091, 41.627314 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047287505", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.922104, 41.626083 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433789", "POINTID": "1102653976457", "FULLNAME": "Dunlap", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.921661, 41.637827 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333232588", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.921964, 41.632078 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747371", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.922841, 41.648094 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747298", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.923536, 41.650062 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747379", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.917407, 41.652888 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747378", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.914505, 41.651651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442365", "POINTID": "1102654018731", "FULLNAME": "Rowe Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.920829, 41.664771 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433379", "POINTID": "1102653975268", "FULLNAME": "de Camp Gardens", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.919161, 41.661992 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333232647", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.912965, 41.663561 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442365", "POINTID": "1102654018731", "FULLNAME": "Rowe Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.920829, 41.664771 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747216", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.915334, 41.686350 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730306207", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.921755, 41.704337 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311340772", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.914234, 41.705500 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045890441", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.922353, 41.712947 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103773048130", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.914776, 41.707531 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052325487", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.919185, 41.716215 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052325469", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.918418, 41.714156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12621 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449050", "POINTID": "1102653997510", "FULLNAME": "Salina", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.909961, 38.152846 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12619 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449688", "POINTID": "1102653988406", "FULLNAME": "Locust Pt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.907740, 38.171181 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12612 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441104", "POINTID": "1102653953839", "FULLNAME": "Pickle Pear Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.902741, 38.231179 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434034", "POINTID": "1102653977216", "FULLNAME": "Edwardsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.909409, 38.284233 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814332343", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.905621, 38.315620 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814332342", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.904903, 38.316529 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443167", "POINTID": "1102653997944", "FULLNAME": "Scottsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.909132, 38.402008 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443167", "POINTID": "1102653997944", "FULLNAME": "Scottsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.909132, 38.402008 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12585 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433236", "POINTID": "1102653951605", "FULLNAME": "Cubby House Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.909135, 38.463116 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446080", "POINTID": "1102653955421", "FULLNAME": "Williams Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.912469, 38.507005 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12576 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438936", "POINTID": "1102654015870", "FULLNAME": "Mead Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.902191, 38.545059 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12572 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432462", "POINTID": "1102654009807", "FULLNAME": "Chestnut Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.909138, 38.579503 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440108", "POINTID": "1102653992860", "FULLNAME": "New Salem", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.904135, 38.621447 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12557 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449687", "POINTID": "1102653988282", "FULLNAME": "Little York", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.904970, 38.702835 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12544 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439646", "POINTID": "1102654016462", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.911916, 38.814499 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292304", "FULLNAME": "Freeman Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.907075, 38.924129 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262934051", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.911198, 38.954167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262933369", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.912032, 38.965223 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262932944", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.903966, 38.963830 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100063163", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.901992, 39.211653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449406", "POINTID": "1102653955569", "FULLNAME": "25th Street Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.904709, 39.223105 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440895", "POINTID": "1102653994491", "FULLNAME": "Parkside", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.911377, 39.238382 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440238", "POINTID": "1102653993259", "FULLNAME": "North Columbus", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.908322, 39.233383 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262914993", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.901939, 39.233292 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262932658", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.913078, 39.248126 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100064206", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.903502, 39.242258 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292520", "FULLNAME": "Gray Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.912587, 39.573088 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273340213", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.902725, 39.604853 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273340207", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.904685, 39.606219 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443874", "POINTID": "1102653998956", "FULLNAME": "Southeast Manor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.904696, 39.627544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444312", "POINTID": "1102653999748", "FULLNAME": "Sugar Creek", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.913030, 39.640599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439313", "POINTID": "1102654016154", "FULLNAME": "Mohr Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.910254, 39.681155 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439889", "POINTID": "1102654016630", "FULLNAME": "Murnan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.908864, 39.675600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110127757", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.911756, 39.717644 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110172664", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.912850, 39.730609 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110172634", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.906879, 39.731969 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431587", "POINTID": "1102653969940", "FULLNAME": "Brookville Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.906603, 39.724501 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110175244", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.902987, 39.738018 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441977", "POINTID": "1102654018492", "FULLNAME": "Richmond Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.913032, 39.752265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475944331", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.911090, 39.872668 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015482144669", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.905021, 39.873724 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010947414078", "FULLNAME": "Pelican Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.911691, 39.925418 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052001650", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.913282, 39.933448 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977633297", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.912812, 39.934830 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015482144252", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.904964, 39.927973 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052370066", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.902059, 39.934563 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977473517", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.907080, 39.943439 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977473469", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.912405, 39.942850 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977476793", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.901928, 39.937174 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977473645", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.911254, 39.944915 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296203988", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.907292, 39.945579 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977473470", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.908647, 39.943436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977485687", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.904656, 39.960437 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977483263", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.911906, 39.958175 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977479472", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.906356, 39.959822 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102931049303", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.902894, 39.953866 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977485550", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.911300, 39.966329 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977483145", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.909924, 39.962003 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977485696", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.904605, 39.961232 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485698899", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.912531, 39.975665 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102970564232", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.902523, 39.968575 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052760225", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.909057, 39.982287 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977486749", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.905345, 39.980405 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432577", "POINTID": "1102653972955", "FULLNAME": "Clarksville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.912477, 40.032262 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433806", "POINTID": "1102653976545", "FULLNAME": "Durbin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.910809, 40.056426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066285957", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.910554, 40.131863 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066285954", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.902550, 40.131901 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445121", "POINTID": "1102654021233", "FULLNAME": "Union Civil Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.909146, 40.436148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105321188142", "MTFCC": "C3071" }, "geometry": { "type": "Point", "coordinates": [ -85.905884, 40.477772 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12321 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443621", "POINTID": "1102654019901", "FULLNAME": "Slocum Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.908038, 40.698096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439665", "POINTID": "1102654016496", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.913040, 40.730041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12297 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00429993", "POINTID": "1102654006339", "FULLNAME": "Abshire Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.907764, 40.897820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12272 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435045", "POINTID": "1102654012489", "FULLNAME": "Germantown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.910267, 41.108098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431659", "POINTID": "1102654008620", "FULLNAME": "Brumbaugh Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.905825, 41.429491 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747473", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.906177, 41.639411 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747390", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.910256, 41.648322 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747461", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.911077, 41.640469 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747394", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.903092, 41.647940 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747389", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.910822, 41.650355 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047018831", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.906549, 41.664807 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333261346", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.911393, 41.666428 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047018824", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.906603, 41.666494 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047490582", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.902676, 41.674961 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103773047960", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.906249, 41.705358 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103773046036", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.911238, 41.712725 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047029085", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.910795, 41.720671 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052326482", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.907416, 41.716687 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047019034", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.910052, 41.728078 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012027980888", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.895233, 38.314254 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012027965947", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.900844, 38.348020 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012027966645", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.900595, 38.344618 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012027966537", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.896142, 38.352151 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444077", "POINTID": "1102653999401", "FULLNAME": "Starlight", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.892465, 38.415056 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12586 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436521", "POINTID": "1102653952758", "FULLNAME": "Hounds Leap", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.898023, 38.457561 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12576 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438936", "POINTID": "1102654015870", "FULLNAME": "Mead Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.902191, 38.545059 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446742", "POINTID": "1102653970592", "FULLNAME": "Bunker Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.894412, 38.573669 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433752", "POINTID": "1102653976314", "FULLNAME": "Dudleytown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.899696, 38.849777 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111399338", "FULLNAME": "Schneck Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.891390, 38.955861 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103855692296", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.900463, 38.964952 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051931095", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.896451, 38.969436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442107", "POINTID": "1102654018602", "FULLNAME": "Riverview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.893307, 38.977554 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442218", "POINTID": "1102653996809", "FULLNAME": "Rockford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.891365, 38.987276 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441057", "POINTID": "1102653994822", "FULLNAME": "Peters Switch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.896644, 39.021720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100108415", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.891239, 39.112926 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445583", "POINTID": "1102654002118", "FULLNAME": "Waynesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.891650, 39.115053 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100108415", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.891239, 39.112926 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262890951", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.900834, 39.122341 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444700", "POINTID": "1102654020884", "FULLNAME": "Thompson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.894428, 39.186994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433876", "POINTID": "1102653976768", "FULLNAME": "East Columbus", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.901652, 39.201716 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434963", "POINTID": "1102654012390", "FULLNAME": "Garland Brook Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.892205, 39.206717 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100063163", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.901992, 39.211653 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434963", "POINTID": "1102654012390", "FULLNAME": "Garland Brook Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.892205, 39.206717 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100480468", "FULLNAME": "Hospital", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.896864, 39.217008 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100480467", "FULLNAME": "Hospital", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.894418, 39.218538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262915987", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.898173, 39.232403 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262916054", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.901306, 39.231462 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100480465", "FULLNAME": "County Fairgrounds", "MTFCC": "K2186" }, "geometry": { "type": "Point", "coordinates": [ -85.899023, 39.226878 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449407", "POINTID": "1102653957464", "FULLNAME": "Eastbrook Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.894431, 39.223660 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262933079", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.902140, 39.239155 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100093596", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.899825, 39.239138 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262915500", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.895458, 39.235824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046726107", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.900871, 39.243513 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292052", "FULLNAME": "Columbus Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.896327, 39.261913 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437818", "POINTID": "1102654014956", "FULLNAME": "Liberty Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.894986, 39.274215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12477 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439520", "POINTID": "1102653991574", "FULLNAME": "Mt Auburn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.893592, 39.392548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292533", "FULLNAME": "Cardinals Nest Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.898696, 39.520310 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443000", "POINTID": "1102654019294", "FULLNAME": "Sandhill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.894973, 39.535046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437036", "POINTID": "1102654014241", "FULLNAME": "Johnson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.899420, 39.565047 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435407", "POINTID": "1102653981524", "FULLNAME": "Green Meadows", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.891918, 39.630878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433246", "POINTID": "1102654011046", "FULLNAME": "Cummingham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.895807, 39.697543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081824632", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.893908, 39.705301 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440092", "POINTID": "1102654016767", "FULLNAME": "New Palestine Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.891626, 39.711714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110172611", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.900520, 39.731158 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109098047038", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.894496, 39.724710 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110127860", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.902183, 39.736012 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110127780", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.900533, 39.738223 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110172601", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.901099, 39.733355 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432174", "POINTID": "1102653971632", "FULLNAME": "Carriage Estates", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.893865, 39.737544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103687564748", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.891888, 39.757711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103687601814", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.895180, 39.761340 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110128234", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.894834, 39.773788 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435008", "POINTID": "1102653980479", "FULLNAME": "Gem", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.896641, 39.779486 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110128053", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.892985, 39.776598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430268", "POINTID": "1102654006719", "FULLNAME": "Arnett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.896920, 39.827541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292263", "FULLNAME": "Indianapolis Regional Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.895783, 39.842916 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452349", "POINTID": "1102653959599", "FULLNAME": "Kingen Gun Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.899975, 39.856709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439657", "POINTID": "1102654016479", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.898310, 39.861986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446281", "POINTID": "1102654003219", "FULLNAME": "Woodbury", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.894976, 39.908652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052370066", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.902059, 39.934563 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052390257", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.896226, 39.934900 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977473625", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.902210, 39.941292 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977476794", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.901172, 39.940697 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052374334", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.894874, 39.937987 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052390257", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.896226, 39.934900 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977483027", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.899959, 39.950825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102930947467", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.902234, 39.958743 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102930947463", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.901273, 39.959160 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102930908367", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.900142, 39.955877 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977483022", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.896011, 39.952093 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102970565678", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.901818, 39.967780 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107060789034", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.900455, 39.962377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977486452", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.898495, 39.972201 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107060014308", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.895456, 39.969899 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052740587", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.899087, 39.982466 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015488858458", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.898817, 39.985925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432914", "POINTID": "1102654010547", "FULLNAME": "Cook Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.895534, 40.255593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12367 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433262", "POINTID": "1102653974839", "FULLNAME": "Curtisville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.898589, 40.318371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12317 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441179", "POINTID": "1102653995095", "FULLNAME": "Pioneer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.895539, 40.737820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062986907", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.897162, 40.759184 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12299 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436874", "POINTID": "1102654014171", "FULLNAME": "Jack Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.896931, 40.888376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443507", "POINTID": "1102653998434", "FULLNAME": "Silver Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.891655, 41.072264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436846", "POINTID": "1102654014149", "FULLNAME": "Island Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.895547, 41.389769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444307", "POINTID": "1102654020541", "FULLNAME": "Stutsman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.900828, 41.596714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735886608", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.899058, 41.606159 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747538", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.892406, 41.622103 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747539", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.894195, 41.627651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730304640", "FULLNAME": "Aster Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.897020, 41.647942 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730304635", "FULLNAME": "Blossom Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.896738, 41.648916 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730304480", "FULLNAME": "Forsythia Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.893125, 41.649282 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012815139039", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.892390, 41.663593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047478929", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.893551, 41.672980 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047478928", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.895496, 41.672421 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729411136", "FULLNAME": "Arbor Kove Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.900780, 41.674064 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047478929", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.893551, 41.672980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047490551", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.898685, 41.684383 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047490548", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.900142, 41.694091 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047490547", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.893082, 41.690286 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047033411", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.894415, 41.703856 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047057810", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.897604, 41.707649 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047057811", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.896574, 41.708294 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103773054928", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.900281, 41.718429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12614 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430400", "POINTID": "1102654006854", "FULLNAME": "Bailey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.881350, 38.215346 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012027966557", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.889633, 38.346267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047930182", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.880226, 38.431942 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12574 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446743", "POINTID": "1102653966776", "FULLNAME": "Bartle", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.887468, 38.560337 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449537", "POINTID": "1102653955269", "FULLNAME": "Vic Swaim Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.890247, 38.656724 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432465", "POINTID": "1102654009818", "FULLNAME": "Chestnut Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.885529, 38.884498 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262936921", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.886629, 38.937679 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111110019", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.887444, 38.949195 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443233", "POINTID": "1102653998071", "FULLNAME": "Seymour", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.890252, 38.959221 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111089276", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.879998, 38.966314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081748049", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.888780, 38.975173 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111122120", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.888002, 38.985024 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081740152", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.886865, 38.978947 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111085143", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.886653, 38.990633 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718795389", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.887854, 38.986705 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111122120", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.888002, 38.985024 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452457", "POINTID": "1102653988209", "FULLNAME": "Little Acre", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.882750, 39.036161 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452457", "POINTID": "1102653988209", "FULLNAME": "Little Acre", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.882750, 39.036161 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437107", "POINTID": "1102653985613", "FULLNAME": "Jonesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.889702, 39.060608 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100108661", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.880390, 39.074681 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100108415", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.891239, 39.112926 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262888792", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.890754, 39.111992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100108415", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.891239, 39.112926 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100068668", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.889375, 39.189188 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504158727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.884188, 39.190680 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100068509", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.889198, 39.200037 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100068052", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.880948, 39.205362 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100062868", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.889418, 39.216703 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449408", "POINTID": "1102653956878", "FULLNAME": "Columbus Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.884708, 39.220881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046717517", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.884590, 39.232390 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434269", "POINTID": "1102653978097", "FULLNAME": "Everroad Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.888042, 39.228382 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100064478", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.884381, 39.231044 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100096375", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.884400, 39.227470 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046717444", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.883198, 39.237152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015503727037", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.882064, 39.248342 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046717410", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.880167, 39.242154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437578", "POINTID": "1102654014758", "FULLNAME": "Lambert Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.881374, 39.259772 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292414", "FULLNAME": "Skeeter Landing", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.882031, 39.477256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440601", "POINTID": "1102654017353", "FULLNAME": "Old Sugar Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.882198, 39.679489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440091", "POINTID": "1102653992728", "FULLNAME": "New Palestine", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.889142, 39.721988 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110144511", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.882892, 39.723521 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015482135044", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.886411, 39.731271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489670823", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.889440, 39.738563 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476287269", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.889598, 39.772953 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476147320", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.882849, 39.774487 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504197244", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.887790, 39.776841 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504198472", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.882554, 39.777062 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110174082", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.887101, 39.774718 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444106", "POINTID": "1102654020290", "FULLNAME": "Steele Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.884142, 39.842541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977479165", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.890008, 39.932732 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977477460", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.890284, 39.942565 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977479154", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.886465, 39.937929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438421", "POINTID": "1102653988801", "FULLNAME": "Luxhaven", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.886921, 39.947541 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977479267", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.883177, 39.947409 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430269", "POINTID": "1102654006721", "FULLNAME": "Arnett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.890244, 39.953931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489663976", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.889488, 39.967017 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489664119", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.885006, 39.964437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435992", "POINTID": "1102654013383", "FULLNAME": "Helm Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.889142, 39.969206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052738545", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.891223, 39.984299 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015488858083", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.886425, 39.981648 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052738077", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.882313, 39.984131 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292287", "FULLNAME": "Irion Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.884813, 40.127804 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12388 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440142", "POINTID": "1102654016826", "FULLNAME": "Newland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.885811, 40.141150 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440071", "POINTID": "1102653992592", "FULLNAME": "New Lancaster", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.879977, 40.255038 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445783", "POINTID": "1102654002372", "FULLNAME": "West Liberty", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.890537, 40.430593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12337 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292678", "FULLNAME": "Converse Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.890370, 40.570303 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441185", "POINTID": "1102654017865", "FULLNAME": "Pipe Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.882758, 40.594205 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12321 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432763", "POINTID": "1102653973532", "FULLNAME": "College Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.885540, 40.698651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12308 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445389", "POINTID": "1102654021477", "FULLNAME": "Wallace Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.884984, 40.809763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435271", "POINTID": "1102654012698", "FULLNAME": "Graceland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.879987, 41.124211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432596", "POINTID": "1102653972989", "FULLNAME": "Claypool", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.880543, 41.129209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440378", "POINTID": "1102654017039", "FULLNAME": "Nye Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.882490, 41.223099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12255 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139942691", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.887406, 41.249399 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139982136", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.882608, 41.248763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046748303", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.885725, 41.586097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747643", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.885009, 41.593357 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747645", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.880038, 41.592584 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747642", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.883442, 41.600018 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730297718", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.880301, 41.615111 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747553", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.889000, 41.623118 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047469249", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.890113, 41.641429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047478816", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.884719, 41.664076 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047021873", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.890869, 41.671858 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047478915", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.882109, 41.665683 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047021872", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.886122, 41.678189 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047037333", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.889686, 41.692453 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047033392", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.888978, 41.705064 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047489798", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.885950, 41.700400 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072906098", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.885676, 41.712036 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729795476", "FULLNAME": "Country Rd 10", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.880240, 41.706654 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729893542", "FULLNAME": "Coulteri Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.882179, 41.719168 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729893661", "FULLNAME": "Edgefield Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.879912, 41.719456 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047032203", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.886980, 41.727556 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047032202", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.883088, 41.728933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046989535", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.887825, 41.742349 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046989534", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.882557, 41.742475 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12613 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441123", "POINTID": "1102653953846", "FULLNAME": "Pigeon Roost", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.878005, 38.225650 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476604986", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.879523, 38.305916 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012027967283", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.873515, 38.306027 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476604985", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.879591, 38.309256 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081579209", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.874610, 38.308075 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434618", "POINTID": "1102653979263", "FULLNAME": "Floyds Knobs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.873574, 38.324511 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434618", "POINTID": "1102653979263", "FULLNAME": "Floyds Knobs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.873574, 38.324511 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047930182", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.880226, 38.431942 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047930437", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.869519, 38.438050 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12587 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431589", "POINTID": "1102653969958", "FULLNAME": "Broom Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.877466, 38.448951 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12557 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439645", "POINTID": "1102654016461", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.869690, 38.703947 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12533 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111121195", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.878343, 38.912240 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111126242", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.873124, 38.912539 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102185009887", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.874813, 38.950951 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102185009840", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.874816, 38.951825 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102184993273", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.870071, 38.952069 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262927348", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.878778, 38.967298 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262926554", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.874159, 38.967102 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046990701", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.878657, 38.973185 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262926634", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.872931, 38.970107 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12513 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446343", "POINTID": "1102653955503", "FULLNAME": "Wrights Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.877759, 39.084219 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100080588", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.873416, 39.194786 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100059249", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.877928, 39.219697 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046717522", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.879727, 39.232394 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046717529", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.877767, 39.230950 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449409", "POINTID": "1102653958966", "FULLNAME": "Holiday Center Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.875819, 39.224771 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100058928", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.879167, 39.239516 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046717522", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.879727, 39.232394 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100098402", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.873596, 39.235183 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100090253", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.872874, 39.232239 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046717410", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.880167, 39.242154 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046717409", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.878931, 39.243808 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100079535", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.872539, 39.243189 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100480477", "FULLNAME": "Clifford Methodist Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -85.871930, 39.282351 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440317", "POINTID": "1102653993478", "FULLNAME": "Northcliff", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.877485, 39.289493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442154", "POINTID": "1102654018639", "FULLNAME": "Roberts Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.871927, 39.349770 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476292374", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.875720, 39.753791 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438923", "POINTID": "1102654015825", "FULLNAME": "McNamee Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.874140, 39.752820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110173140", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.868980, 39.768599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489673146", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.869403, 39.932012 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052384220", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.878657, 39.938684 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813382798", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.869264, 39.943377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813382797", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.873252, 39.950045 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813382798", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.869264, 39.943377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052750491", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.872845, 39.974828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489611682", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.873969, 39.981455 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430277", "POINTID": "1102653965631", "FULLNAME": "Aroma", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.874143, 40.199482 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440071", "POINTID": "1102653992592", "FULLNAME": "New Lancaster", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.879977, 40.255038 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12336 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432907", "POINTID": "1102653973786", "FULLNAME": "Converse", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.873314, 40.577537 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435271", "POINTID": "1102654012698", "FULLNAME": "Graceland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.879987, 41.124211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262943610", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.876814, 41.188436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476149982", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.879110, 41.216846 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011135093754", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.877439, 41.212426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139941345", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.870200, 41.232049 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12253 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438858", "POINTID": "1102653953490", "FULLNAME": "McElroy Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.871101, 41.266154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333359978", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.875666, 41.588574 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046748544", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.873247, 41.588476 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747645", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.880038, 41.592584 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747636", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.872976, 41.597276 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730297718", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.880301, 41.615111 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103687137865", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.877423, 41.612968 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730297712", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.876605, 41.616044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047478917", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.879432, 41.667392 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046987524", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.871954, 41.696370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333163224", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.870002, 41.702539 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333163315", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.869615, 41.699567 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729795476", "FULLNAME": "Country Rd 10", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.880240, 41.706654 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047057719", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.879644, 41.712138 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729893661", "FULLNAME": "Edgefield Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.879912, 41.719456 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047057648", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.872472, 41.718223 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046989543", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.880280, 41.742437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311523381", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.858122, 38.297631 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108265278", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.867113, 38.315165 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105317232786", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.863607, 38.322527 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106086667509", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.868277, 38.330971 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106086667059", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.860354, 38.327810 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442688", "POINTID": "1102653997356", "FULLNAME": "Saint Marys", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.864685, 38.355899 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012027968608", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.858554, 38.362848 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047930696", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.865793, 38.436459 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110103674857", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.864315, 38.433638 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047931082", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.861816, 38.431951 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047930696", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.865793, 38.436459 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047931464", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.860802, 38.439974 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12587 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432202", "POINTID": "1102653971689", "FULLNAME": "Carwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.863433, 38.448388 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12586 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439186", "POINTID": "1102654016076", "FULLNAME": "Miller Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.864967, 38.458117 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12579 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442348", "POINTID": "1102653954319", "FULLNAME": "Round Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.859689, 38.519782 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12574 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292502", "FULLNAME": "New Liberty Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.863999, 38.557764 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440074", "POINTID": "1102653992609", "FULLNAME": "New Liberty", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.867191, 38.568114 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432464", "POINTID": "1102653972621", "FULLNAME": "Chestnut Ridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.860252, 38.888665 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440046", "POINTID": "1102653992507", "FULLNAME": "New Farmington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.866917, 38.925054 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434953", "POINTID": "1102654012385", "FULLNAME": "Gardner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.863028, 38.923386 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12531 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434408", "POINTID": "1102654011858", "FULLNAME": "Farmington Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.868030, 38.930331 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102184993113", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.868003, 38.953971 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081441797", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.867832, 38.981643 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440052", "POINTID": "1102654016749", "FULLNAME": "New Harmony Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.864149, 39.138108 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051925410", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.864254, 39.133333 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046720991", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.865356, 39.209358 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046720990", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.862424, 39.209599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046718361", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.864683, 39.222028 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100090369", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.868025, 39.231366 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814373410", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.861461, 39.225542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046638121", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.866432, 39.239510 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100090418", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.865037, 39.234917 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046638124", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.866230, 39.241357 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432650", "POINTID": "1102653973107", "FULLNAME": "Clifford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.869151, 39.282270 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100480476", "FULLNAME": "Clifford Christian Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -85.866603, 39.282223 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100480463", "FULLNAME": "Post Ofc", "MTFCC": "K2165" }, "geometry": { "type": "Point", "coordinates": [ -85.868103, 39.283813 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472447973", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.864243, 39.322040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439321", "POINTID": "1102653953555", "FULLNAME": "Money Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.862199, 39.439770 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438868", "POINTID": "1102653953506", "FULLNAME": "McFarren Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.866365, 39.453936 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438831", "POINTID": "1102653953475", "FULLNAME": "McCrea Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.858865, 39.460047 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434301", "POINTID": "1102653978285", "FULLNAME": "Fairland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.863586, 39.585878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273341069", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.862880, 39.590678 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432687", "POINTID": "1102653973177", "FULLNAME": "Clover Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.859141, 39.607546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110172273", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.862674, 39.766053 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110173140", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.868980, 39.768599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433822", "POINTID": "1102654011462", "FULLNAME": "Dye Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.858862, 39.777820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110173034", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.863908, 39.786597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110155184", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.866064, 39.794004 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110151564", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.863385, 39.801349 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489673160", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.868119, 39.932020 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110753369765", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.858186, 39.929641 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813382798", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.869264, 39.943377 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813382777", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.866845, 39.942042 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814399628", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.863114, 39.942264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813382796", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.869269, 39.949743 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813382798", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.869264, 39.943377 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813382828", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.868170, 39.944557 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052739790", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.867909, 39.981514 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977531254", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.868081, 39.986839 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449656", "POINTID": "1102653978906", "FULLNAME": "Fishersburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.859420, 40.071984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12388 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441022", "POINTID": "1102653994732", "FULLNAME": "Perkinsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.861365, 40.144205 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439664", "POINTID": "1102654016491", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.863588, 40.226149 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445737", "POINTID": "1102654002276", "FULLNAME": "West Elwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.860536, 40.279757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434848", "POINTID": "1102654012240", "FULLNAME": "Friends Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.861370, 40.780596 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12311 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434848", "POINTID": "1102654012240", "FULLNAME": "Friends Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.861370, 40.780596 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052182153", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.859053, 40.827947 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011135090002", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.864189, 41.210349 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011135090001", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.862261, 41.209797 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476146916", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.858173, 41.206350 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139944215", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.860005, 41.217012 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12255 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139944003", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.861703, 41.250540 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139941151", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.858530, 41.256335 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12252 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476003487", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.861826, 41.276331 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12251 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475985341", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.859941, 41.282533 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439337", "POINTID": "1102653991100", "FULLNAME": "Monoquet", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.861655, 41.289489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439140", "POINTID": "1102654016063", "FULLNAME": "Milford Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.862491, 41.421434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475987838", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.857948, 41.447992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047022019", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.865852, 41.570097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108659381750", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.864997, 41.592143 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479113", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.858425, 41.655297 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479093", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.862143, 41.662882 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479098", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.859246, 41.658299 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441153", "POINTID": "1102654017843", "FULLNAME": "Pine Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.859439, 41.665326 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333163263", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.868132, 41.701774 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333163540", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.861389, 41.700314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440157", "POINTID": "1102653993137", "FULLNAME": "Nibbyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.860828, 41.713938 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012815138876", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.859925, 41.711449 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047057652", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.869232, 41.721614 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047057654", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.867781, 41.721638 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047057671", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.864938, 41.715452 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729432079", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.861901, 41.714847 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047057653", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.867660, 41.722831 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12609 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441155", "POINTID": "1102653953950", "FULLNAME": "Pine Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.855797, 38.262568 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311523381", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.858122, 38.297631 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438325", "POINTID": "1102653953213", "FULLNAME": "Lost Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.851596, 38.325494 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443947", "POINTID": "1102653954771", "FULLNAME": "Spickert Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.848852, 38.339233 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012027968432", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.856038, 38.366524 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048068488", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.856883, 38.434182 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437786", "POINTID": "1102653987684", "FULLNAME": "Leota", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.850244, 38.648391 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433196", "POINTID": "1102654010942", "FULLNAME": "Crothersville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.854136, 38.800332 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441917", "POINTID": "1102653996355", "FULLNAME": "Retreat", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.853305, 38.824499 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12542 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452193", "POINTID": "1102653987184", "FULLNAME": "Langoons", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.857194, 38.837000 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435099", "POINTID": "1102654012534", "FULLNAME": "Glasson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.853586, 39.012275 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430372", "POINTID": "1102653966218", "FULLNAME": "Azalia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.847200, 39.091720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437005", "POINTID": "1102653985454", "FULLNAME": "Jewell Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.849705, 39.198661 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109098031173", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.858195, 39.222702 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104691992137", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.855365, 39.220638 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045756036", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.856875, 39.231187 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045756037", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.851449, 39.230712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100082856", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.851116, 39.284625 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440931", "POINTID": "1102654017693", "FULLNAME": "Patterson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.848868, 39.400327 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433986", "POINTID": "1102654011529", "FULLNAME": "Eberhart Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.854421, 39.429491 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439188", "POINTID": "1102654016085", "FULLNAME": "Miller Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.852752, 39.474492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443991", "POINTID": "1102653999210", "FULLNAME": "Spring Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.853031, 39.776709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110172966", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.847053, 39.788275 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110172445", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.856961, 39.799558 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452300", "POINTID": "1102653957038", "FULLNAME": "Crestview Conservation Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.850808, 39.797543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110172436", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.857173, 39.801365 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110132968", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.851765, 39.801654 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110094455", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.852355, 39.926078 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110753369765", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.858186, 39.929641 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434692", "POINTID": "1102653979598", "FULLNAME": "Fortville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.848032, 39.932263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110552601297", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.852841, 39.943157 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110172192", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.852640, 39.941427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433649", "POINTID": "1102654011393", "FULLNAME": "Doty Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.850781, 39.950047 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434419", "POINTID": "1102654011892", "FULLNAME": "Fausset Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.854702, 39.952231 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266188450", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.852742, 40.059499 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431578", "POINTID": "1102654008531", "FULLNAME": "Brookside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.852227, 40.060608 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437628", "POINTID": "1102653987234", "FULLNAME": "Lapel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.848308, 40.068373 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12388 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441023", "POINTID": "1102654017770", "FULLNAME": "Perkinsville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.851921, 40.140873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12375 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442632", "POINTID": "1102654019022", "FULLNAME": "Saint Josephs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.852476, 40.254205 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432168", "POINTID": "1102654009366", "FULLNAME": "Carr Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.855255, 40.260315 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108310864213", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.852114, 40.261048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434145", "POINTID": "1102654011646", "FULLNAME": "Elwood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.848032, 40.271426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443539", "POINTID": "1102653998509", "FULLNAME": "Sims", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.855255, 40.499758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12336 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436687", "POINTID": "1102654014075", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.848048, 40.577278 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12317 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438677", "POINTID": "1102654015514", "FULLNAME": "Martin Luther Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.857484, 40.738929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438677", "POINTID": "1102654015514", "FULLNAME": "Martin Luther Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.857484, 40.738929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472807948", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.858248, 40.826329 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452408", "POINTID": "1102653963382", "FULLNAME": "Wabash Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.849150, 40.826709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476146916", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.858173, 41.206350 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140520393", "FULLNAME": "Richardson du Bois Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -85.849552, 41.236566 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445487", "POINTID": "1102654001886", "FULLNAME": "Warsaw", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.853042, 41.238099 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140520393", "FULLNAME": "Richardson du Bois Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -85.849552, 41.236566 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12255 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437554", "POINTID": "1102653986972", "FULLNAME": "Lakeside Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.849155, 41.252264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139943834", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.855614, 41.259051 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139943877", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.848268, 41.259931 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139944034", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.848088, 41.255634 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12252 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476009803", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.854134, 41.275970 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12251 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475999417", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.857334, 41.284236 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449682", "POINTID": "1102653987524", "FULLNAME": "Leesburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.849990, 41.332001 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140520414", "FULLNAME": "Lakeland Rehab and Healthcare", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.851218, 41.411289 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140520400", "FULLNAME": "Big Boulder Golf Course", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -85.848868, 41.419926 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475987837", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.857857, 41.449021 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475950052", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.849019, 41.491809 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475950053", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.851502, 41.492462 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436068", "POINTID": "1102654013422", "FULLNAME": "Hess Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.848603, 41.558381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333369959", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.850966, 41.573890 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333259615", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.852090, 41.566620 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333369638", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.850974, 41.575417 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444291", "POINTID": "1102654020516", "FULLNAME": "Studebaker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.856937, 41.600882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479114", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.856046, 41.653090 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476493814", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.849512, 41.652098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479110", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.856553, 41.658882 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476493763", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.850588, 41.664344 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441605", "POINTID": "1102654018164", "FULLNAME": "Proctor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.851661, 41.723106 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443502", "POINTID": "1102653998412", "FULLNAME": "Silver Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.845239, 38.282568 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105281351517", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.844899, 38.292191 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445772", "POINTID": "1102654021704", "FULLNAME": "West Haven Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.837464, 38.295067 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449457", "POINTID": "1102653961094", "FULLNAME": "New Albany Mall", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.838019, 38.307010 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888789494", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.846202, 38.315679 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888786288", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.841841, 38.309197 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262908162", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.844067, 38.320361 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108275900", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.837040, 38.317741 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262908346", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.837517, 38.315645 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888790511", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.845194, 38.326929 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888790978", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.840857, 38.330400 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888794849", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.842825, 38.336119 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888794848", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.840959, 38.337024 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476314364", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.837651, 38.349810 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012027979875", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.845379, 38.356764 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436101", "POINTID": "1102654013447", "FULLNAME": "Hickory Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.840798, 38.443674 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110104244565", "FULLNAME": "Willey's Chapel Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -85.839188, 38.505527 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433195", "POINTID": "1102653974625", "FULLNAME": "Crothersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.841586, 38.800598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430696", "POINTID": "1102654007248", "FULLNAME": "Bedel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.839972, 38.865889 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111142847", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.843877, 38.918723 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12531 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433691", "POINTID": "1102654011422", "FULLNAME": "Driftwood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.843306, 38.932275 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111126079", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.836750, 38.947784 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047017585", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.842375, 38.972193 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430372", "POINTID": "1102653966218", "FULLNAME": "Azalia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.847200, 39.091720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442661", "POINTID": "1102653997341", "FULLNAME": "Saint Louis Crossing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.846650, 39.318938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443922", "POINTID": "1102654020118", "FULLNAME": "Spaugh Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.836927, 39.333383 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443707", "POINTID": "1102653998647", "FULLNAME": "Smithland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.846642, 39.460325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432310", "POINTID": "1102654009586", "FULLNAME": "Center Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.846363, 39.537824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432310", "POINTID": "1102654009586", "FULLNAME": "Center Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.846363, 39.537824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273346702", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.842442, 39.596270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434107", "POINTID": "1102654011629", "FULLNAME": "Ellis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.843863, 39.629490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292405", "FULLNAME": "Farm Strip", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.842884, 39.682487 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441077", "POINTID": "1102653994873", "FULLNAME": "Philadelphia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.845580, 39.781452 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110173054", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.841637, 39.783198 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110172966", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.847053, 39.788275 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110173054", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.841637, 39.783198 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110129823", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.846733, 39.796801 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439311", "POINTID": "1102653991016", "FULLNAME": "Mohawk", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.840808, 39.843653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435995", "POINTID": "1102653983099", "FULLNAME": "Helmcrest", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.840530, 39.940597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444434", "POINTID": "1102654000021", "FULLNAME": "Sunview", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.839974, 39.948929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436124", "POINTID": "1102654013483", "FULLNAME": "Hiday Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.843032, 39.955042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440161", "POINTID": "1102654016848", "FULLNAME": "Nicholson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.842753, 40.011428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435733", "POINTID": "1102653982424", "FULLNAME": "Hardscrabble", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.843308, 40.019762 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12375 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452318", "POINTID": "1102653957785", "FULLNAME": "Elwood Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.844421, 40.253650 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108310863897", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.846632, 40.257445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476487330", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.836512, 40.293662 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12368 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432764", "POINTID": "1102653973517", "FULLNAME": "College Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.841922, 40.305870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12361 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437764", "POINTID": "1102653987571", "FULLNAME": "Leisure", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.843032, 40.364204 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062994458", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.842399, 40.667602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12311 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052241355", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.837187, 40.782274 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12309 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445191", "POINTID": "1102654001287", "FULLNAME": "Valley Brook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.844427, 40.805597 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435960", "POINTID": "1102654013318", "FULLNAME": "Hebrew Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.841927, 40.798932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12308 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062988039", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.844486, 40.810182 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445191", "POINTID": "1102654001287", "FULLNAME": "Valley Brook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.844427, 40.805597 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052006903", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.839585, 40.810667 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12287 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062998468", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.842670, 40.984735 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435237", "POINTID": "1102654012649", "FULLNAME": "Gospel Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.839430, 41.081988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139942302", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.836815, 41.200863 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139959917", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.839754, 41.223179 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262941397", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.842276, 41.242372 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12255 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440486", "POINTID": "1102654017119", "FULLNAME": "Oakwood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.840267, 41.246154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12252 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292353", "FULLNAME": "Warsaw Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.838775, 41.274124 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139942075", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.842984, 41.330416 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439139", "POINTID": "1102653990653", "FULLNAME": "Milford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.845545, 41.409768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439139", "POINTID": "1102653990653", "FULLNAME": "Milford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.845545, 41.409768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292369", "FULLNAME": "H R Weisser Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.846213, 41.422812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439141", "POINTID": "1102653990672", "FULLNAME": "Milford Junction", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.841935, 41.428379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046988237", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.846125, 41.556741 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046988230", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.840948, 41.557478 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046988233", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.840924, 41.552267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729732758", "FULLNAME": "Canyon Cove", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.841576, 41.562409 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440451", "POINTID": "1102654017096", "FULLNAME": "Oak Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.845824, 41.594492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730312171", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.846143, 41.648435 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729432581", "FULLNAME": "Gentle Stream Cir", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.843198, 41.648022 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479668", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.843641, 41.643372 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479265", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.846865, 41.652126 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479301", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.839612, 41.652070 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479340", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.836109, 41.652056 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476493786", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.846248, 41.661068 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047019927", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.842034, 41.679058 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047019901", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.839371, 41.680987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010883030110", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.844097, 41.687001 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047019901", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.839371, 41.680987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046965517", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.842978, 41.707455 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072909651", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.842023, 41.718010 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046746789", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.837461, 41.758968 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015896729338", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.832091, 38.305676 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015896729026", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.825163, 38.302514 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888816101", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.834993, 38.315923 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015896731323", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.831976, 38.307383 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888810021", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.835262, 38.320317 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888816101", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.834993, 38.315923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311964649", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.834757, 38.330339 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048177437", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.826413, 38.326874 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262906772", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.835669, 38.344660 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430447", "POINTID": "1102653950700", "FULLNAME": "Bald Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.827464, 38.361731 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015484708671", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.830195, 38.383599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015484708666", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.827349, 38.386563 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446120", "POINTID": "1102654003018", "FULLNAME": "Wilson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.829688, 38.444508 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046995449", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.830756, 38.800740 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435342", "POINTID": "1102654012780", "FULLNAME": "Grassy Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.834138, 38.825888 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445138", "POINTID": "1102654001184", "FULLNAME": "Uniontown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.825804, 38.845887 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292291", "FULLNAME": "Stewart Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.825112, 38.886933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437459", "POINTID": "1102653986593", "FULLNAME": "Kriete Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.832748, 38.917554 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047017533", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.829353, 38.966994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047017643", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.830667, 38.991790 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047017644", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.830123, 38.994666 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441830", "POINTID": "1102653996198", "FULLNAME": "Reddington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.832754, 39.032553 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015503908751", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.825474, 39.097649 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449657", "POINTID": "1102653979136", "FULLNAME": "Flat Rock", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.831646, 39.364215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434319", "POINTID": "1102654011821", "FULLNAME": "Fairview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.831362, 39.653933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110176178", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.826013, 39.766160 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110171602", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.825085, 39.764936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110176178", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.826013, 39.766160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110172952", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.835350, 39.783435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446047", "POINTID": "1102654022012", "FULLNAME": "Willet Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.829141, 39.809764 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444329", "POINTID": "1102654020543", "FULLNAME": "Sugar Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.825807, 39.825598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110117682", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.832802, 39.901136 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433951", "POINTID": "1102653976974", "FULLNAME": "Eastgate", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.829696, 39.930873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432809", "POINTID": "1102653973628", "FULLNAME": "Colonial Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.834975, 39.937541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440623", "POINTID": "1102654017397", "FULLNAME": "Old Woodward Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.829420, 40.084483 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439978", "POINTID": "1102654016678", "FULLNAME": "Neese Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.834698, 40.162817 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476485653", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.834975, 40.294584 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440203", "POINTID": "1102653993209", "FULLNAME": "Normal", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.825254, 40.465038 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12344 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444475", "POINTID": "1102654000085", "FULLNAME": "Swayzee", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.825533, 40.508371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12336 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439130", "POINTID": "1102653990602", "FULLNAME": "Mier", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.825533, 40.575316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062994451", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.832496, 40.671199 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062994425", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.830334, 40.671224 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12324 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062994427", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.828816, 40.672251 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12321 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439289", "POINTID": "1102654016118", "FULLNAME": "Mississinewa Memorial Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.826091, 40.700319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103709733172", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.830852, 40.779638 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072985901", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.828224, 40.775602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12311 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443820", "POINTID": "1102653998791", "FULLNAME": "South Haven", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.829149, 40.783653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12308 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062990431", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.830812, 40.810819 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062987376", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.827497, 40.812668 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12299 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438256", "POINTID": "1102654015185", "FULLNAME": "Long Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.831372, 40.885320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12290 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437558", "POINTID": "1102654014748", "FULLNAME": "Laketon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.833872, 40.963375 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436705", "POINTID": "1102653984778", "FULLNAME": "Ijamsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.832762, 40.959765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12289 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437558", "POINTID": "1102654014748", "FULLNAME": "Laketon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.833872, 40.963375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12288 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437557", "POINTID": "1102653987003", "FULLNAME": "Laketon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.835817, 40.974210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139942306", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.835903, 41.199180 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139942314", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.830208, 41.200978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139944359", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.835192, 41.207795 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139944143", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.833902, 41.219570 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12255 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292330", "FULLNAME": "Kosciusko Community Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.829103, 41.247356 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140043465", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.825555, 41.293676 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476128980", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.827451, 41.288408 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12249 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140054551", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.834385, 41.298845 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140043451", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.825273, 41.295377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437550", "POINTID": "1102654014738", "FULLNAME": "Lakeside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.826933, 41.383102 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443244", "POINTID": "1102653998085", "FULLNAME": "Shady Banks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.830267, 41.392268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440093", "POINTID": "1102653992754", "FULLNAME": "New Paris", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.828047, 41.500325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440093", "POINTID": "1102653992754", "FULLNAME": "New Paris", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.828047, 41.500325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047019612", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.830570, 41.511606 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443907", "POINTID": "1102654020099", "FULLNAME": "Sparklin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.828047, 41.533104 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443907", "POINTID": "1102654020099", "FULLNAME": "Sparklin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.828047, 41.533104 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046989005", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.830611, 41.546577 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445538", "POINTID": "1102654001922", "FULLNAME": "Waterford Mills", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.830546, 41.543104 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104713339995", "FULLNAME": "Rieth Interpretive Ctr", "MTFCC": "K2545" }, "geometry": { "type": "Point", "coordinates": [ -85.835533, 41.573916 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435227", "POINTID": "1102653981121", "FULLNAME": "Goshen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.834436, 41.582271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311306464", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.825823, 41.594289 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333256080", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.826995, 41.631294 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333256076", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.825351, 41.636520 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479341", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.832679, 41.647048 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479357", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.830045, 41.646573 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479340", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.836109, 41.652056 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292273", "FULLNAME": "Hatfield Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.830938, 41.665036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046965559", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.833679, 41.708264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047508263", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.830868, 41.716465 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047508264", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.829771, 41.716481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729794605", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.831448, 41.727844 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046746788", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.836375, 41.757571 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440013", "POINTID": "1102653992260", "FULLNAME": "New Albany", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.824128, 38.285623 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452369", "POINTID": "1102653961074", "FULLNAME": "New Albany Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.822462, 38.297568 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434312", "POINTID": "1102654011801", "FULLNAME": "Fairview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.820518, 38.292846 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108279471", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.824868, 38.306067 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103719155212", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.823948, 38.313528 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449458", "POINTID": "1102653963253", "FULLNAME": "University Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.819407, 38.315344 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942592159", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.824227, 38.318501 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015484708676", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.823752, 38.384200 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015484708677", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.822451, 38.387082 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814331867", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.815928, 38.400223 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439781", "POINTID": "1102654016583", "FULLNAME": "Mountain Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.819134, 38.513394 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435222", "POINTID": "1102654012629", "FULLNAME": "Gorrell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.814413, 38.803110 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292291", "FULLNAME": "Stewart Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.825112, 38.886933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12534 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452199", "POINTID": "1102653993041", "FULLNAME": "Newry", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.822194, 38.904777 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441061", "POINTID": "1102653994837", "FULLNAME": "Petersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.819984, 39.224493 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814366967", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.816695, 39.227799 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449703", "POINTID": "1102653993560", "FULLNAME": "Nortonburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.823318, 39.268382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434493", "POINTID": "1102653971640", "FULLNAME": "Carrollton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.820807, 39.705600 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441861", "POINTID": "1102653996244", "FULLNAME": "Reedville Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.819142, 39.706155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110178975", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.823095, 39.710573 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110177925", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.815515, 39.712215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438155", "POINTID": "1102654015119", "FULLNAME": "Little Sugar Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.814139, 39.727820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110171602", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.825085, 39.764936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110171593", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.820976, 39.766181 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015677796311", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.814547, 39.789062 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110171317", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.824050, 39.810807 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452330", "POINTID": "1102653958420", "FULLNAME": "Greenfield Conservation Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.820807, 39.846154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446672", "POINTID": "1102653999772", "FULLNAME": "Sugar Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.822752, 39.861152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433479", "POINTID": "1102653975631", "FULLNAME": "Denny Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.822197, 39.885597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813261263", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.821765, 39.945598 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430069", "POINTID": "1102653964402", "FULLNAME": "Alfont", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.814697, 39.951429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443352", "POINTID": "1102654019619", "FULLNAME": "Shell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.822476, 40.193928 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292639", "FULLNAME": "Stottlemyer Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.815108, 40.226097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12373 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052247258", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.818597, 40.270503 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12368 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445577", "POINTID": "1102654021593", "FULLNAME": "Waymire Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.817752, 40.306148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441391", "POINTID": "1102653995329", "FULLNAME": "Pt Isabel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.824420, 40.421703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441391", "POINTID": "1102653995329", "FULLNAME": "Pt Isabel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.824420, 40.421703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440203", "POINTID": "1102653993209", "FULLNAME": "Normal", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.825254, 40.465038 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12338 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444741", "POINTID": "1102654020905", "FULLNAME": "Thraikill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.824978, 40.558649 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439717", "POINTID": "1102653991858", "FULLNAME": "Mt Vernon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.824147, 40.669484 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015482977181", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.821971, 40.776583 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12309 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445327", "POINTID": "1102654001609", "FULLNAME": "Wabash", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.820536, 40.797819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12308 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063058158", "FULLNAME": "Hospital", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.815663, 40.806548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12293 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430074", "POINTID": "1102654006511", "FULLNAME": "Algers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.822760, 40.935876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12289 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440149", "POINTID": "1102653993078", "FULLNAME": "Newton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.821373, 40.967265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12285 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441272", "POINTID": "1102654017918", "FULLNAME": "Pleasant Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.814150, 40.998654 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446188", "POINTID": "1102654003107", "FULLNAME": "Winona Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.821931, 41.227265 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140520382", "FULLNAME": "Schl of Theology", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.821915, 41.223910 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12251 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139943980", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.821969, 41.284053 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139943970", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.819555, 41.283922 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12249 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140043451", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.825273, 41.295377 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139943917", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.822290, 41.298084 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431917", "POINTID": "1102653951310", "FULLNAME": "Buzzard Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.818600, 41.465326 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046959838", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.816001, 41.502999 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430414", "POINTID": "1102653966304", "FULLNAME": "Bainter Town", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.817210, 41.516993 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311306506", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.817015, 41.529214 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311306510", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.814297, 41.527648 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047037701", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.814772, 41.546948 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296517018", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.819064, 41.564988 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296517016", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.817572, 41.560059 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730235227", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.814024, 41.565189 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046957756", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.815204, 41.598016 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333256086", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.821531, 41.631966 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333256076", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.825351, 41.636520 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333232773", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.823970, 41.639796 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333256086", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.821531, 41.631966 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479375", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.822194, 41.647980 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730238264", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.819852, 41.643857 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730237199", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.815569, 41.641752 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479377", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.825254, 41.648479 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479384", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.824643, 41.650341 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479391", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.817004, 41.650297 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047508267", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.823259, 41.716681 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431536", "POINTID": "1102653969653", "FULLNAME": "Bristol", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.817500, 41.721440 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432239", "POINTID": "1102654009502", "FULLNAME": "Cathcart Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.819992, 41.722827 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8572, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444921", "POINTID": "1102654021064", "FULLNAME": "Trout Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.815826, 41.753660 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108610048", "FULLNAME": "Hazelwood Jr HS", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.807458, 38.300872 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449456", "POINTID": "1102653956851", "FULLNAME": "Colonial Manor Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.808574, 38.312566 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019626984732", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.809732, 38.322745 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019626984685", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.808048, 38.323684 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104474394132", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.808614, 38.339405 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013022558331", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.803719, 38.349785 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108249861", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.813377, 38.358179 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013022514525", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.803448, 38.352578 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051942277", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.806071, 38.362943 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814331359", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.811626, 38.399408 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442619", "POINTID": "1102653997322", "FULLNAME": "Saint Joseph", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.808297, 38.400064 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430085", "POINTID": "1102654006557", "FULLNAME": "Allen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.803298, 38.427841 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430818", "POINTID": "1102653967695", "FULLNAME": "Bennettsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.808576, 38.425620 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047934780", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.804290, 38.433579 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047934573", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.807254, 38.441722 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017128763250", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.804853, 38.439871 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12587 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047934474", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.808204, 38.445516 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110104244564", "FULLNAME": "Bluelick Christian Chruch", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -85.808112, 38.511868 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449620", "POINTID": "1102653968559", "FULLNAME": "Blue Lick", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.804687, 38.508394 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440441", "POINTID": "1102653953807", "FULLNAME": "Oak Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.811631, 38.594782 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441156", "POINTID": "1102653953961", "FULLNAME": "Pine Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.807742, 38.596447 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104474654274", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.809641, 38.688744 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504159288", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.805500, 38.689134 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430350", "POINTID": "1102653966045", "FULLNAME": "Austin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.808024, 38.758390 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435222", "POINTID": "1102654012629", "FULLNAME": "Gorrell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.814413, 38.803110 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434582", "POINTID": "1102653979186", "FULLNAME": "Fleming", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.806361, 38.973665 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434071", "POINTID": "1102653977387", "FULLNAME": "Elizabethtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.813313, 39.135051 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440911", "POINTID": "1102654017666", "FULLNAME": "Parrish Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.807198, 39.446714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292468", "FULLNAME": "Pherigo Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.803976, 39.486979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292468", "FULLNAME": "Pherigo Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.803976, 39.486979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292503", "FULLNAME": "Shelbyville Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.803523, 39.582570 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110177911", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.811301, 39.712151 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438155", "POINTID": "1102654015119", "FULLNAME": "Little Sugar Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.814139, 39.727820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110174097", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.812653, 39.737629 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110172924", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.804636, 39.765616 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015677796306", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.813479, 39.787959 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475981052", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.806036, 39.790457 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441873", "POINTID": "1102654018374", "FULLNAME": "Reeves Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.805529, 39.840043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439540", "POINTID": "1102654016348", "FULLNAME": "Mount Carmel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.806364, 39.866986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446357", "POINTID": "1102654022297", "FULLNAME": "Wynn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.805253, 39.942264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436815", "POINTID": "1102653984992", "FULLNAME": "Ingalls", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.805253, 39.956985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441586", "POINTID": "1102654018140", "FULLNAME": "Prewett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.806364, 40.206982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12307 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438992", "POINTID": "1102654015914", "FULLNAME": "Memorial Lawns Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.806648, 40.819209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12285 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441272", "POINTID": "1102654017918", "FULLNAME": "Pleasant Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.814150, 40.998654 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140520385", "FULLNAME": "Grace Colg", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.812409, 41.226173 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139944384", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.803976, 41.234266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105281398672", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.813150, 41.244780 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105281398673", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.813031, 41.243770 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12255 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105281398672", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.813150, 41.244780 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311306510", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.814297, 41.527648 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311306525", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.811902, 41.533164 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047019231", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.806009, 41.537115 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311306525", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.811902, 41.533164 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047037689", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.811484, 41.549228 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814533361", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.807959, 41.548919 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047037679", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.811645, 41.552934 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434080", "POINTID": "1102654011599", "FULLNAME": "Elkhart Prairie Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.807141, 41.551364 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730235227", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.814024, 41.565189 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019665352096", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -85.804591, 41.564258 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047037250", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.811658, 41.569700 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047037215", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.808582, 41.569339 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046994685", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.803140, 41.586233 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046957755", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.814306, 41.595850 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439446", "POINTID": "1102654016244", "FULLNAME": "Morris Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.810824, 41.608947 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730237260", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.812938, 41.639894 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8573, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730237220", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.813989, 41.644003 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435270", "POINTID": "1102654012694", "FULLNAME": "Graceland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.798295, 38.324511 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449046", "POINTID": "1102653981474", "FULLNAME": "Graysville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.802185, 38.323122 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013029339669", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.802056, 38.329592 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435270", "POINTID": "1102654012694", "FULLNAME": "Graceland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.798295, 38.324511 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431153", "POINTID": "1102653968274", "FULLNAME": "Blackiston Mill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.798129, 38.335460 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718456920", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.795632, 38.358983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051943419", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.799873, 38.366522 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718456887", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.796914, 38.362821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051943557", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.802804, 38.371590 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051944152", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.796965, 38.369088 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108280240", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.802909, 38.378189 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718430651", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.797180, 38.377783 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103723673723", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.797247, 38.385331 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442623", "POINTID": "1102653954350", "FULLNAME": "Saint Joseph Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.803295, 38.399509 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103473578193", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.798607, 38.406075 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430085", "POINTID": "1102654006557", "FULLNAME": "Allen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.803298, 38.427841 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048076542", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.799827, 38.425586 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048076543", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.798354, 38.420787 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047935042", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.803308, 38.430963 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047934771", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.800865, 38.434358 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047934533", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.802566, 38.444493 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107277155415", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.801533, 38.440039 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110103672782", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.795621, 38.438756 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12587 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048075883", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.801986, 38.452998 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12586 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048075852", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.796930, 38.454336 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12579 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813276018", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.797062, 38.514752 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442204", "POINTID": "1102653954278", "FULLNAME": "Rock Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.802187, 38.596726 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108667628876", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.794259, 38.649581 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117310815", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.802096, 38.693509 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12558 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117309414", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.801997, 38.695088 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433006", "POINTID": "1102654010693", "FULLNAME": "Coryell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.796914, 38.844500 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12531 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430494", "POINTID": "1102654007017", "FULLNAME": "Barkman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.794138, 38.926721 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436613", "POINTID": "1102654013951", "FULLNAME": "Hunt Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.793859, 38.966441 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00453035", "POINTID": "1102653973755", "FULLNAME": "Conologue", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.799138, 38.975608 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443520", "POINTID": "1102654019817", "FULLNAME": "Simmons Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.794701, 39.341160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434448", "POINTID": "1102653978688", "FULLNAME": "Fenns", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.797754, 39.457547 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273347951", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.793422, 39.494951 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273343970", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.796303, 39.504152 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273344003", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.800363, 39.502352 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273343990", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.796297, 39.503376 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273347946", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.793604, 39.496876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273343970", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.796303, 39.504152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430711", "POINTID": "1102653967298", "FULLNAME": "Beech Brook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.797751, 39.552269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273384129", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.793081, 39.558599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292480", "FULLNAME": "Army Aviation Support Facility Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.799975, 39.583379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110171856", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.799701, 39.789773 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015681460619", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -85.802093, 39.798950 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104492885187", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.793811, 39.795999 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104492885106", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.792126, 39.796207 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432414", "POINTID": "1102654009731", "FULLNAME": "Chappell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.801364, 39.886430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440659", "POINTID": "1102654017456", "FULLNAME": "Olvey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.799419, 39.907819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430057", "POINTID": "1102654006455", "FULLNAME": "Alel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.801088, 40.479759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292497", "FULLNAME": "Wabash Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.797469, 40.761402 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438724", "POINTID": "1102654015575", "FULLNAME": "Matlock Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.792480, 40.780320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12297 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445177", "POINTID": "1102654001224", "FULLNAME": "Urbana", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.792759, 40.898376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440823", "POINTID": "1102653994346", "FULLNAME": "Packerton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.797485, 41.116432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011135090863", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.802260, 41.177477 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489261247", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.798668, 41.218259 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015503982531", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.797547, 41.218283 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139944328", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.793765, 41.213840 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489263526", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.795125, 41.240749 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12255 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435536", "POINTID": "1102654012970", "FULLNAME": "Groves Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.796654, 41.251155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12251 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440714", "POINTID": "1102653994211", "FULLNAME": "Osborn Landing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.796930, 41.281155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436853", "POINTID": "1102653985115", "FULLNAME": "Island Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.800264, 41.286987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476294096", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.796295, 41.408603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292236", "FULLNAME": "Goshen Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.792883, 41.525696 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311306530", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.801503, 41.535812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333228974", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.797298, 41.546418 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333359552", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.799186, 41.566868 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046994685", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.803140, 41.586233 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440452", "POINTID": "1102654017100", "FULLNAME": "Oak Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.801651, 41.723664 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047968808", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.790450, 38.304990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942910712", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.787526, 38.312240 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942910726", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.786231, 38.315231 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047966657", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.785010, 38.324530 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942910839", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.787913, 38.316041 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047967034", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.781875, 38.320344 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047995893", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.792336, 38.328782 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047995577", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.786826, 38.329628 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047966656", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.786373, 38.324717 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103941489044", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.791153, 38.336230 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051948831", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.782304, 38.366501 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108271749", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.781607, 38.360848 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105339961213", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.791236, 38.372822 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051949575", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.787137, 38.371117 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718455647", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.782803, 38.372282 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718431718", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.781832, 38.380863 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048082688", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.785810, 38.388930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047940677", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.787011, 38.413196 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103549470861", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.781540, 38.415100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431402", "POINTID": "1102654008167", "FULLNAME": "Bowery Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.786075, 38.496728 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12581 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431402", "POINTID": "1102654008167", "FULLNAME": "Bowery Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.786075, 38.496728 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12565 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434268", "POINTID": "1102654011753", "FULLNAME": "Everitt Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.784965, 38.634225 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292402", "FULLNAME": "Scottsburg Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.788967, 38.656713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12560 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015692378839", "FULLNAME": "Scottsburg High School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.781451, 38.680887 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117314278", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.787749, 38.692511 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117309946", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.784860, 38.692835 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12558 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433078", "POINTID": "1102654010820", "FULLNAME": "Craig Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.791633, 38.701445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12557 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452180", "POINTID": "1102653989568", "FULLNAME": "Marshfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.781634, 38.709223 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117385859", "FULLNAME": "Scott Memorial Hospital Genl Ward Scmh", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.784461, 38.713644 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435808", "POINTID": "1102654013201", "FULLNAME": "Harrod Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.782468, 38.779499 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12534 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439914", "POINTID": "1102654016645", "FULLNAME": "Myers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.783857, 38.905332 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433628", "POINTID": "1102654011380", "FULLNAME": "Donaldson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.790490, 39.148925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443295", "POINTID": "1102654019531", "FULLNAME": "Sharon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.781926, 39.243106 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440591", "POINTID": "1102654017311", "FULLNAME": "Old Saint Louis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.784981, 39.317271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440590", "POINTID": "1102653993935", "FULLNAME": "Old Saint Louis", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.785536, 39.320616 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440591", "POINTID": "1102654017311", "FULLNAME": "Old Saint Louis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.784981, 39.317271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273340369", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.788575, 39.499986 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273346920", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.785590, 39.503310 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273342384", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.783133, 39.528153 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273648697", "FULLNAME": "Major Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.781250, 39.524818 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273346866", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.785780, 39.545558 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436180", "POINTID": "1102653983615", "FULLNAME": "Hildebrand Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.786086, 39.546714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432102", "POINTID": "1102653971350", "FULLNAME": "Candleglo Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.791917, 39.557547 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437979", "POINTID": "1102654015009", "FULLNAME": "Lisher Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.782197, 39.645323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434718", "POINTID": "1102653979679", "FULLNAME": "Fountaintown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.783028, 39.694765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104492885138", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.789946, 39.798064 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292254", "FULLNAME": "Frost Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.784807, 39.795029 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110130788", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.784638, 39.808307 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292222", "FULLNAME": "Hancock Memorial Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.782216, 39.814721 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110161155", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.781502, 39.836276 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430071", "POINTID": "1102654006496", "FULLNAME": "Alford Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.791086, 39.848097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439541", "POINTID": "1102654016349", "FULLNAME": "Mount Carmel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.791362, 39.965040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441322", "POINTID": "1102654017947", "FULLNAME": "Pleasant Valley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.791362, 40.010039 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476423204", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.787934, 40.005485 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292612", "FULLNAME": "Foghorn Farms Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.782331, 40.032209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435636", "POINTID": "1102653982154", "FULLNAME": "Hamilton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.784976, 40.123095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443484", "POINTID": "1102654019799", "FULLNAME": "Sigler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.784973, 40.226427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432752", "POINTID": "1102653973474", "FULLNAME": "Cole", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.787199, 40.479759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436052", "POINTID": "1102653983257", "FULLNAME": "Herbst", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.787199, 40.514760 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12339 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442369", "POINTID": "1102654018736", "FULLNAME": "Rowland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.787478, 40.553928 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444864", "POINTID": "1102654000897", "FULLNAME": "Treaty", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.782478, 40.724486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105633045012", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.790482, 40.831918 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12303 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443932", "POINTID": "1102653999086", "FULLNAME": "Speicherville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.791646, 40.854486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12289 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431306", "POINTID": "1102653968770", "FULLNAME": "Bolivar", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.787483, 40.964209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12286 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062986535", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.789385, 40.996249 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12285 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062998294", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.789297, 40.997033 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12284 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440476", "POINTID": "1102654017116", "FULLNAME": "Oaklawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.781371, 41.006710 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052174776", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.791700, 41.013305 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015503982543", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.791233, 41.216384 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139939864", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.786735, 41.221818 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12252 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436174", "POINTID": "1102653983594", "FULLNAME": "Highlands Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.785820, 41.273378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12251 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430280", "POINTID": "1102653965642", "FULLNAME": "Arrowhead Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.789986, 41.278933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139956974", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.786993, 41.293842 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12249 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475994699", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.791933, 41.299373 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440727", "POINTID": "1102653994241", "FULLNAME": "Oswego", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.787207, 41.320323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430769", "POINTID": "1102653967451", "FULLNAME": "Bell Rohr Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.781097, 41.331711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439904", "POINTID": "1102653992005", "FULLNAME": "Musquabuck Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.781376, 41.368657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12240 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439904", "POINTID": "1102653992005", "FULLNAME": "Musquabuck Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.781376, 41.368657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471581296", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.782406, 41.521744 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433132", "POINTID": "1102654010888", "FULLNAME": "Cripe Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.787489, 41.582271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729889809", "FULLNAME": "Hemminger Dr", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.784522, 41.651631 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333228746", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.790884, 41.751242 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942911351", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.774274, 38.305394 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942911130", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.780314, 38.311788 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048080031", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.781006, 38.323783 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047966802", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.776776, 38.319162 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047967548", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.773123, 38.316144 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047966628", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.779316, 38.329186 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108279942", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.779861, 38.358806 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718452476", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.772871, 38.357155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051949252", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.780030, 38.366547 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108279942", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.779861, 38.358806 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047292875", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.775709, 38.375106 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718452597", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.771224, 38.367721 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103724149310", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.779976, 38.383138 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047292932", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.775207, 38.377762 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718431895", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.778308, 38.385268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443665", "POINTID": "1102654019930", "FULLNAME": "Smith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.773852, 38.409507 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047940632", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.780612, 38.415573 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471420868", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.774789, 38.444165 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12587 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047939132", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.773488, 38.446697 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12585 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047938230", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.778093, 38.465088 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104474426575", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.776186, 38.479204 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048077630", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.777184, 38.495191 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12581 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048077628", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.775845, 38.497011 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12577 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439726", "POINTID": "1102654016549", "FULLNAME": "Mount Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.777465, 38.535616 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12569 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445042", "POINTID": "1102654001153", "FULLNAME": "Underwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.774410, 38.603670 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12568 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452177", "POINTID": "1102653994953", "FULLNAME": "Pigeon Roost Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.775923, 38.614513 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052009740", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.773965, 38.666155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12560 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015692378839", "FULLNAME": "Scottsburg High School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.781451, 38.680887 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443163", "POINTID": "1102653997930", "FULLNAME": "Scottsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.770242, 38.685614 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117314361", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.778224, 38.691611 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443163", "POINTID": "1102653997930", "FULLNAME": "Scottsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.770242, 38.685614 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12558 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117314135", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.776248, 38.697512 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445991", "POINTID": "1102654021948", "FULLNAME": "Whitson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.778855, 38.742833 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12535 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446732", "POINTID": "1102653999375", "FULLNAME": "Staples Ford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.776637, 38.894221 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311256528", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.771173, 38.970658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446229", "POINTID": "1102654022132", "FULLNAME": "Wohrer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.777750, 38.983665 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439422", "POINTID": "1102654016216", "FULLNAME": "Moravian Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.774982, 39.300882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443475", "POINTID": "1102654019783", "FULLNAME": "Sidener Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.778868, 39.327548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052191108", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.773839, 39.499529 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273348053", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.773946, 39.505361 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273648697", "FULLNAME": "Major Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.781250, 39.524818 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443347", "POINTID": "1102653998238", "FULLNAME": "Shelbyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.776918, 39.521435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052163569", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.778906, 39.543876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273346764", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.780241, 39.563285 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072533536", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.773370, 39.557693 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273346759", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.780314, 39.569136 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452315", "POINTID": "1102653957674", "FULLNAME": "Elks Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.774974, 39.564490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259514482", "FULLNAME": "Hidden Valley Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.776130, 39.660588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432853", "POINTID": "1102654010403", "FULLNAME": "Concord Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.771919, 39.668655 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504184811", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.779107, 39.722345 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110173515", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.773729, 39.773786 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110174032", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.770422, 39.769366 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110132149", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.775856, 39.780737 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110173520", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.773667, 39.775817 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110303612", "FULLNAME": "School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.772908, 39.792568 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110130770", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.781280, 39.807528 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110129693", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.777916, 39.802610 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110129650", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.774558, 39.803607 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015681769764", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -85.780351, 39.824731 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110145219", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.779721, 39.836305 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110144393", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.773254, 39.838655 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110129333", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.773421, 39.856007 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110171345", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.772863, 39.863991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110129225", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.772101, 39.870381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433179", "POINTID": "1102654010925", "FULLNAME": "Crosley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.779973, 39.973930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436683", "POINTID": "1102654014067", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.779858, 40.218890 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434789", "POINTID": "1102653979865", "FULLNAME": "Frankton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.778863, 40.222817 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12377 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436534", "POINTID": "1102654013859", "FULLNAME": "Howard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.772474, 40.234483 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066212232", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.775245, 40.591256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441893", "POINTID": "1102654018410", "FULLNAME": "Renicker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.775537, 40.832541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434700", "POINTID": "1102654012118", "FULLNAME": "Foster Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.770814, 40.869765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12285 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052127867", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.776964, 41.004690 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12284 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440476", "POINTID": "1102654017116", "FULLNAME": "Oaklawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.781371, 41.006710 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440955", "POINTID": "1102653961718", "FULLNAME": "Peabody Memorial Home", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.776926, 41.006154 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063058201", "FULLNAME": "Warvel Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -85.772206, 41.006508 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262942558", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.777854, 41.231081 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262942457", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.775741, 41.230113 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12251 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444214", "POINTID": "1102653999619", "FULLNAME": "Stoneburner Landing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.776653, 41.285045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445326", "POINTID": "1102654002030", "FULLNAME": "Wa-Will-Away Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.778042, 41.290045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292342", "FULLNAME": "Garber Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.776693, 41.306432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444232", "POINTID": "1102653999654", "FULLNAME": "Stony Ridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.776932, 41.327268 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011229133790", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.771658, 41.324251 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430769", "POINTID": "1102653967451", "FULLNAME": "Bell Rohr Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.781097, 41.331711 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444232", "POINTID": "1102653999654", "FULLNAME": "Stony Ridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.776932, 41.327268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262936721", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.777801, 41.341658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439904", "POINTID": "1102653992005", "FULLNAME": "Musquabuck Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.781376, 41.368657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12240 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439904", "POINTID": "1102653992005", "FULLNAME": "Musquabuck Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.781376, 41.368657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441838", "POINTID": "1102653996219", "FULLNAME": "Redmon Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.779431, 41.378101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108484761361", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.770744, 41.508603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730240487", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.778198, 41.514432 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730240480", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.774649, 41.515916 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108484761361", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.770744, 41.508603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730241137", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.777272, 41.521066 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432982", "POINTID": "1102654010636", "FULLNAME": "Cornell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.772490, 41.630883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730230805", "FULLNAME": "Crystal Spring Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.770159, 41.648445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439980", "POINTID": "1102654016695", "FULLNAME": "Neff Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.772769, 41.655882 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730230805", "FULLNAME": "Crystal Spring Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.770159, 41.648445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12607 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942919639", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.761163, 38.275645 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942915479", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.767737, 38.290459 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432578", "POINTID": "1102653972949", "FULLNAME": "Clarksville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.759961, 38.296734 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942908872", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.759503, 38.308094 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047967591", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.769523, 38.318421 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047966473", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.764046, 38.333180 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016954960920", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.764167, 38.336275 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718456201", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.767804, 38.348514 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718456309", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.769497, 38.351253 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718452553", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.770430, 38.363700 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718452595", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.768118, 38.367534 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718455833", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.769499, 38.366249 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047965148", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.769733, 38.374099 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103724151952", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.769751, 38.368482 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435630", "POINTID": "1102653982144", "FULLNAME": "Hamburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.767461, 38.383399 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047294121", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.768577, 38.377150 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048116053", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.762324, 38.380174 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047852673", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.760833, 38.402004 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047852672", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.761640, 38.401564 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047961572", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.769081, 38.409245 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047961575", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.767340, 38.403465 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047852673", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.760833, 38.402004 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729890114", "FULLNAME": "York Cir", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.768359, 38.444539 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441027", "POINTID": "1102653994742", "FULLNAME": "Perry Crossing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.763295, 38.442842 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12587 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047939292", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.768845, 38.446655 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471578212", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.762096, 38.446961 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048078620", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.763416, 38.484988 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01851803", "POINTID": "1102653990234", "FULLNAME": "Memphis", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.761630, 38.483395 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048077704", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.769033, 38.496216 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048079013", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.759165, 38.490235 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12581 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048078035", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.761082, 38.498938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12576 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436039", "POINTID": "1102653983229", "FULLNAME": "Henryville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.767742, 38.541727 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017129164948", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.763663, 38.546498 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12575 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813274697", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.769360, 38.549210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445284", "POINTID": "1102654001547", "FULLNAME": "Vienna", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.768853, 38.648949 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12560 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443163", "POINTID": "1102653997930", "FULLNAME": "Scottsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.770242, 38.685614 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443163", "POINTID": "1102653997930", "FULLNAME": "Scottsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.770242, 38.685614 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117314483", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.764749, 38.688950 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117305195", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.762230, 38.714204 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432076", "POINTID": "1102654009215", "FULLNAME": "Campbell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.764966, 38.788945 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103719069963", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.759597, 39.175988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100480478", "MTFCC": "C3071" }, "geometry": { "type": "Point", "coordinates": [ -85.766718, 39.297190 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440208", "POINTID": "1102653993229", "FULLNAME": "Norristown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.760535, 39.365326 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292458", "FULLNAME": "Siefert Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.763977, 39.439756 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444772", "POINTID": "1102654020932", "FULLNAME": "Tindall Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.769974, 39.487824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273348071", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.766412, 39.501278 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442040", "POINTID": "1102653996518", "FULLNAME": "Riley Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.768029, 39.506435 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437625", "POINTID": "1102653987194", "FULLNAME": "Lantana Estate", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.762475, 39.504215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273348092", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.769046, 39.517518 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445662", "POINTID": "1102654002176", "FULLNAME": "Wellington Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.763309, 39.517547 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433115", "POINTID": "1102653974357", "FULLNAME": "Crestmoor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.763864, 39.513937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445383", "POINTID": "1102654001759", "FULLNAME": "Walkerville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.763030, 39.527826 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273348334", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.759293, 39.534069 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110130863", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.766825, 39.758035 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110174152", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.763075, 39.753038 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110124981", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.769963, 39.765911 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431406", "POINTID": "1102653969099", "FULLNAME": "Bowman Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.767474, 39.761987 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110171608", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.760224, 39.763117 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110173464", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.769953, 39.774790 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110174032", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.770422, 39.769366 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110173508", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.769912, 39.773772 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110144418", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.764585, 39.770665 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110132876", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.763456, 39.766301 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110173464", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.769953, 39.774790 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440870", "POINTID": "1102654017623", "FULLNAME": "Park Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.764695, 39.778377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449837", "POINTID": "1102653981640", "FULLNAME": "Greenfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.769419, 39.785043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109098028495", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.767050, 39.797236 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110303605", "FULLNAME": "Memorial Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.765929, 39.795383 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110130946", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.760302, 39.797734 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110171716", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.761120, 39.804600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110175948", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.764457, 39.813504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438753", "POINTID": "1102653989820", "FULLNAME": "Maxwell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.769974, 39.857543 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110129383", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.768204, 39.854326 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432947", "POINTID": "1102653973819", "FULLNAME": "Cooper Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.769974, 39.871709 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432945", "POINTID": "1102654010583", "FULLNAME": "Cooper Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.761919, 39.871431 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434004", "POINTID": "1102653977110", "FULLNAME": "Eden", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.769974, 39.906154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431197", "POINTID": "1102653968396", "FULLNAME": "Bloomer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.768029, 40.083929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12337 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444483", "POINTID": "1102654000091", "FULLNAME": "Sweetser", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.769143, 40.571983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438552", "POINTID": "1102654015411", "FULLNAME": "Maple Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.769421, 40.589761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12309 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062989654", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.768906, 40.802544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12297 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443931", "POINTID": "1102654020125", "FULLNAME": "Speicher Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.761369, 40.898931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12287 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437461", "POINTID": "1102654014666", "FULLNAME": "Krisher Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.765817, 40.986710 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12285 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440278", "POINTID": "1102653993348", "FULLNAME": "North Manchester", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.768593, 41.000599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052128303", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.759822, 41.026224 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432640", "POINTID": "1102654010037", "FULLNAME": "Clemmers-Fishers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.764427, 41.102821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011229133650", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.769341, 41.325727 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434648", "POINTID": "1102653979408", "FULLNAME": "Forest Glen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.763598, 41.326712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449843", "POINTID": "1102653998461", "FULLNAME": "Silver Pt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.768874, 41.331433 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437157", "POINTID": "1102653985727", "FULLNAME": "Kalorama Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.760820, 41.334488 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089441789", "FULLNAME": "Tippecanoe Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.764789, 41.339622 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441686", "POINTID": "1102653995860", "FULLNAME": "Quaker Haven Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.760541, 41.366990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444557", "POINTID": "1102654020765", "FULLNAME": "Tamarack Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.759985, 41.405324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504114495", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.762877, 41.414507 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430828", "POINTID": "1102653967723", "FULLNAME": "Benton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.761099, 41.509216 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730230805", "FULLNAME": "Crystal Spring Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.770159, 41.648445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730230959", "FULLNAME": "Crystal Spring Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.770288, 41.652581 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730230805", "FULLNAME": "Crystal Spring Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.770159, 41.648445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437531", "POINTID": "1102653986816", "FULLNAME": "Lake Grange", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.769156, 41.690328 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431324", "POINTID": "1102653968843", "FULLNAME": "Bonneyville Mills", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.765269, 41.718105 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047036703", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.765283, 41.728390 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047036702", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.762314, 41.729213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047036700", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.765613, 41.732752 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047036701", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.762182, 41.731309 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292070", "FULLNAME": "Holiday Inn Lakeview Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.754849, 38.283048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942908900", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.758816, 38.306122 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047974568", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.758062, 38.321956 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047974464", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.754050, 38.318968 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047993119", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.755278, 38.331516 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047968171", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.752073, 38.325538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047845321", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.751456, 38.366453 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047294672", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.757864, 38.371220 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048082823", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.756346, 38.382688 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048115694", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.754369, 38.379122 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110103680217", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.753095, 38.384978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449730", "POINTID": "1102653998002", "FULLNAME": "Sellersburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.754962, 38.398119 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443928", "POINTID": "1102653999073", "FULLNAME": "Speed", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.752462, 38.412286 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048079013", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.759165, 38.490235 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433095", "POINTID": "1102654010838", "FULLNAME": "Cravens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.755520, 38.649502 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117301331", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.750005, 38.654826 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444024", "POINTID": "1102654020204", "FULLNAME": "Spurgeon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.752465, 38.745057 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113314182", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.757397, 39.115988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440135", "POINTID": "1102653993000", "FULLNAME": "Newbern", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.750812, 39.235328 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100084326", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.750067, 39.282756 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446133", "POINTID": "1102654003042", "FULLNAME": "Wilson Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.755254, 39.438381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106073875036", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.751518, 39.504097 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273340334", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.758491, 39.503606 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106073875035", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.751891, 39.502602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072549505", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.753811, 39.510682 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106073875036", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.751518, 39.504097 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273348334", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.759293, 39.534069 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431483", "POINTID": "1102653969357", "FULLNAME": "Brent Woods", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.756920, 39.538380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437390", "POINTID": "1102653986375", "FULLNAME": "Knighthood Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.756641, 39.553657 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438970", "POINTID": "1102653990200", "FULLNAME": "Meiks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.750252, 39.553102 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438610", "POINTID": "1102653989450", "FULLNAME": "Marion", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.754975, 39.591713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440979", "POINTID": "1102654017731", "FULLNAME": "Pelham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.758030, 39.646713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110105818", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.757968, 39.751793 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436229", "POINTID": "1102654013609", "FULLNAME": "Hinchman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.749696, 39.758932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110176248", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.752081, 39.774491 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109098024663", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.756802, 39.788722 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110129784", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.757003, 39.798649 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110132129", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.748857, 39.798167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110171706", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.757338, 39.806552 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110174018", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.749326, 39.805538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110160208", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.758752, 39.818895 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106067912549", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.753503, 39.984901 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446673", "POINTID": "1102653984767", "FULLNAME": "Idlewold", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.752752, 39.986153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292628", "FULLNAME": "North Lakeland Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.752306, 40.021695 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434018", "POINTID": "1102653977160", "FULLNAME": "Edgewood Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.753028, 40.101429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433774", "POINTID": "1102653976361", "FULLNAME": "Dundee", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.756086, 40.272261 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12284 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109097373947", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.757888, 41.007544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052128175", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.754575, 41.024528 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444467", "POINTID": "1102654020656", "FULLNAME": "Swank Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.753039, 41.024488 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441498", "POINTID": "1102653995525", "FULLNAME": "Potawatomi Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.758596, 41.323378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445380", "POINTID": "1102654001736", "FULLNAME": "Walker Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.753317, 41.329490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12242 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431933", "POINTID": "1102654009060", "FULLNAME": "Cable Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.748873, 41.356713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444529", "POINTID": "1102654000190", "FULLNAME": "Syracuse", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.752486, 41.427824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814533451", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.756153, 41.447877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730313290", "FULLNAME": "Hidden Ridge Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.753669, 41.571420 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435005", "POINTID": "1102654012409", "FULLNAME": "Geising Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.753599, 41.653104 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431323", "POINTID": "1102654007999", "FULLNAME": "Bonneyville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.756657, 41.715328 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12608 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047694382", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.745595, 38.271002 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12607 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436979", "POINTID": "1102653985380", "FULLNAME": "Jeffersonville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.737181, 38.277569 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047820011", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.745829, 38.287486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445439", "POINTID": "1102654021507", "FULLNAME": "Walnut Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.746658, 38.302558 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047285834", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.739188, 38.306511 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047968349", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.747497, 38.307799 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047820701", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.746244, 38.322268 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047820744", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.741752, 38.322165 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047071312", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.740934, 38.333125 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047071365", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.737667, 38.330739 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047833204", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.746966, 38.333878 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048119862", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.738611, 38.340114 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432295", "POINTID": "1102653972018", "FULLNAME": "Cementville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.746073, 38.349789 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048119670", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.737975, 38.342485 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047833612", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.743039, 38.355855 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691768688", "FULLNAME": "Sble Mill Rd", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.740821, 38.350571 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319864046", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.747151, 38.370192 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047852191", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.745947, 38.376637 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048117254", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.743364, 38.402224 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103549362079", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.739788, 38.567730 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12572 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047020455", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.742009, 38.579119 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047020476", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.742216, 38.575428 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436447", "POINTID": "1102654013789", "FULLNAME": "Hopewell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.737466, 38.648949 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12562 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434239", "POINTID": "1102654011726", "FULLNAME": "Estil Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.738018, 38.663669 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013873289741", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.745241, 38.735247 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442549", "POINTID": "1102654018933", "FULLNAME": "Saint James Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.739413, 38.955333 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435914", "POINTID": "1102653982904", "FULLNAME": "Hayden", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.740526, 38.983108 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292316", "FULLNAME": "Aerobatic Practice Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.746695, 38.996030 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449040", "POINTID": "1102654000313", "FULLNAME": "Tannersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.747473, 39.095053 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100101695", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.737849, 39.179872 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12477 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052193823", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.740381, 39.393149 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432032", "POINTID": "1102653971229", "FULLNAME": "Camp Flat Rock", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.747199, 39.396992 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434616", "POINTID": "1102654012065", "FULLNAME": "Floyd Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.742476, 39.395048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437391", "POINTID": "1102653986380", "FULLNAME": "Knighthood Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.742197, 39.578380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110176199", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.747258, 39.773834 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110126098", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.747626, 39.767558 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452331", "POINTID": "1102653958440", "FULLNAME": "Greenfield Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.747197, 39.779488 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110126156", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.741336, 39.791636 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110130921", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.747567, 39.798182 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110128491", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.737514, 39.797879 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110126156", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.741336, 39.791636 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110144437", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.747087, 39.804924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430533", "POINTID": "1102654007077", "FULLNAME": "Barrett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.738305, 39.852819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106067922101", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.746384, 39.981726 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106067902051", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.743737, 39.979430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440989", "POINTID": "1102653994649", "FULLNAME": "Pendleton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.746639, 39.997541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103692226737", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.747441, 40.010448 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106067765957", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.744893, 40.110642 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452310", "POINTID": "1102653957563", "FULLNAME": "Edgewood Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.744694, 40.106429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444187", "POINTID": "1102654020419", "FULLNAME": "Stoken Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.739418, 40.259762 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434678", "POINTID": "1102654012101", "FULLNAME": "Forrestville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.742197, 40.342815 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435581", "POINTID": "1102653982060", "FULLNAME": "Hackleman", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.748031, 40.421703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435581", "POINTID": "1102653982060", "FULLNAME": "Hackleman", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.748031, 40.421703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12330 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436915", "POINTID": "1102653985228", "FULLNAME": "Jalapa", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.745534, 40.627817 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12290 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443218", "POINTID": "1102653998028", "FULLNAME": "Servia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.740537, 40.956711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12289 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434327", "POINTID": "1102654011834", "FULLNAME": "Fairview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.741371, 40.971431 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435124", "POINTID": "1102654012562", "FULLNAME": "Glenwood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.745815, 41.035044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12272 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443479", "POINTID": "1102653998380", "FULLNAME": "Sidney", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.743546, 41.105598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446328", "POINTID": "1102654003346", "FULLNAME": "Wooster", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.742763, 41.209209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439265", "POINTID": "1102653990904", "FULLNAME": "Mineral Springs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.744152, 41.326156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140034091", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.743259, 41.400147 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445569", "POINTID": "1102654002015", "FULLNAME": "Wawasee Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.747398, 41.414497 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440487", "POINTID": "1102653993753", "FULLNAME": "Oakwood Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.738319, 41.411435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476173815", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.741151, 41.433980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108615422009", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.747969, 41.496726 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432680", "POINTID": "1102654010089", "FULLNAME": "Clinton Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.739155, 41.569493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439195", "POINTID": "1102654016094", "FULLNAME": "Miller Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.737766, 41.620604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333386412", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.737830, 41.663114 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333124414", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.738740, 41.666314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12607 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436979", "POINTID": "1102653985380", "FULLNAME": "Jeffersonville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.737181, 38.277569 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449459", "POINTID": "1102653957482", "FULLNAME": "Eastgate Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.729813, 38.289800 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433944", "POINTID": "1102654011512", "FULLNAME": "Eastern Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.729127, 38.283402 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449459", "POINTID": "1102653957482", "FULLNAME": "Eastgate Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.729813, 38.289800 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047285856", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.726286, 38.307258 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103940556969", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.732694, 38.300220 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047820987", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.736130, 38.315210 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048120124", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.728558, 38.311758 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047285856", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.726286, 38.307258 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103711025557", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.736897, 38.318347 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471828127", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.730731, 38.318711 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105044185873", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.726203, 38.319004 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047071382", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.736701, 38.331446 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103711024951", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.730063, 38.328776 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048119676", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.735266, 38.339504 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110103629999", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.735038, 38.332932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048119672", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.735556, 38.342207 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048119725", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.729588, 38.342611 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292060", "FULLNAME": "Clark Regional Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.736916, 38.364846 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048117347", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.730650, 38.408198 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047734656", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.727925, 38.415779 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446330", "POINTID": "1102654022239", "FULLNAME": "Worrell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.729685, 38.437562 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12585 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452142", "POINTID": "1102654000153", "FULLNAME": "Sylvan Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.736353, 38.467841 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110103674780", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.733069, 38.568701 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436447", "POINTID": "1102654013789", "FULLNAME": "Hopewell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.737466, 38.648949 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12561 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504160726", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.732455, 38.672228 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430043", "POINTID": "1102653964328", "FULLNAME": "Albion", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.734132, 38.743668 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12542 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437200", "POINTID": "1102654014400", "FULLNAME": "Keith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.730800, 38.833390 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292328", "FULLNAME": "Greener Pastures Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.736192, 38.936707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100101707", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.731720, 39.175559 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438145", "POINTID": "1102654015105", "FULLNAME": "Little Sand Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.728311, 39.189217 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046725081", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.735730, 39.233834 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273386847", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.731409, 39.510206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292446", "FULLNAME": "Foltz Farm Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.734829, 39.588042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292205", "FULLNAME": "Pope Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.734808, 39.789753 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442016", "POINTID": "1102653996508", "FULLNAME": "Riley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.730529, 39.786987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110128491", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.737514, 39.797879 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476129879", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.732002, 39.794299 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476129804", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.729089, 39.793687 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441570", "POINTID": "1102654018109", "FULLNAME": "Pratt Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.728582, 39.868376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432912", "POINTID": "1102654010540", "FULLNAME": "Cook Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.728585, 39.908654 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266117187", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.735215, 40.006290 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436638", "POINTID": "1102653984630", "FULLNAME": "Huntsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.730250, 40.008653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103692225932", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.727820, 40.030432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434014", "POINTID": "1102653977140", "FULLNAME": "Edgewood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.734140, 40.103374 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106067764008", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.733418, 40.102519 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443799", "POINTID": "1102653998772", "FULLNAME": "South Edgewood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.732750, 40.097262 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434014", "POINTID": "1102653977140", "FULLNAME": "Edgewood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.734140, 40.103374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12373 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440695", "POINTID": "1102653994101", "FULLNAME": "Orestes", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.728027, 40.269484 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441725", "POINTID": "1102653995952", "FULLNAME": "Radley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.733584, 40.436426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445595", "POINTID": "1102654002136", "FULLNAME": "Weaver", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.729140, 40.465315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449721", "POINTID": "1102653997036", "FULLNAME": "Roseburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.729419, 40.521982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12328 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439036", "POINTID": "1102654015988", "FULLNAME": "Meshingomesia Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.730811, 40.641151 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12324 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435762", "POINTID": "1102654013163", "FULLNAME": "Harper Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.731085, 40.673765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12323 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052249819", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.728043, 40.682306 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449680", "POINTID": "1102653986715", "FULLNAME": "Lagro", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.730256, 40.838098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12304 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436690", "POINTID": "1102654014079", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.727480, 40.840598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437841", "POINTID": "1102653987928", "FULLNAME": "Liberty Mills", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.735816, 41.033656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442534", "POINTID": "1102654018899", "FULLNAME": "Saint Francis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.729427, 41.185043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139962178", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.736049, 41.291077 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139968723", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.735542, 41.288682 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430992", "POINTID": "1102653967939", "FULLNAME": "Between-The-Lakes Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.736650, 41.324766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445068", "POINTID": "1102654021216", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.728875, 41.378936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452359", "POINTID": "1102653960453", "FULLNAME": "Maxwelton Golf Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.732208, 41.433658 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140520352", "FULLNAME": "Maxwelton Golf Club", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -85.729540, 41.433943 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440183", "POINTID": "1102654016890", "FULLNAME": "Nisley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.735266, 41.585326 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046746807", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.735956, 41.663447 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103731189621", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.728848, 41.664272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046746804", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.734177, 41.667570 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103731189599", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.728837, 41.666853 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730226834", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.734121, 41.689454 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730227245", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.732528, 41.686306 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730226834", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.734121, 41.689454 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047045236", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.727061, 41.689759 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010883027668", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.729288, 41.689240 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445313", "POINTID": "1102654001583", "FULLNAME": "Vistula", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.728046, 41.749217 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048121850", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.719334, 38.287556 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449047", "POINTID": "1102653995418", "FULLNAME": "Port Fulton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.720238, 38.282012 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048120672", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.722279, 38.298656 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048120673", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.721753, 38.298056 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010899247294", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.718725, 38.298050 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047285856", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.726286, 38.307258 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048120420", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.725286, 38.306945 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048120672", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.722279, 38.298656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105044186078", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.721152, 38.313604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047286355", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.723660, 38.323366 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047832972", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.716268, 38.320313 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047832703", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.725173, 38.330011 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047832050", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.724913, 38.336445 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047827447", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.719779, 38.338174 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888771270", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.715337, 38.333773 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048118875", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.724706, 38.348034 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691765754", "FULLNAME": "Crimson Point Dr", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.720042, 38.350186 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103670408140", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.716585, 38.355876 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691765754", "FULLNAME": "Crimson Point Dr", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.720042, 38.350186 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047834141", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.715217, 38.353527 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047838426", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.716719, 38.380237 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691476432", "FULLNAME": "Sky Ridge Rd", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.717912, 38.391983 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691475982", "FULLNAME": "Skycrest Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.716783, 38.398704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047856015", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.724226, 38.418196 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441244", "POINTID": "1102654017901", "FULLNAME": "Pleasant Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.719224, 38.418950 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485420727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.722035, 38.422087 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110103681481", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.717671, 38.426233 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12585 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103671138907", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.720568, 38.462843 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12576 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296541819", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.717703, 38.547905 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12534 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445848", "POINTID": "1102654021762", "FULLNAME": "Weston Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.722467, 38.903666 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445917", "POINTID": "1102654021841", "FULLNAME": "Whitcomb Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.723859, 38.984499 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436600", "POINTID": "1102654013922", "FULLNAME": "Hulse Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.723304, 39.042276 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12513 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443126", "POINTID": "1102653997812", "FULLNAME": "Scipio", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.717472, 39.079220 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435295", "POINTID": "1102653981226", "FULLNAME": "Grammer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.724975, 39.152829 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440891", "POINTID": "1102654017636", "FULLNAME": "Parkison Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.720533, 39.174773 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12477 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435013", "POINTID": "1102653980487", "FULLNAME": "Geneva", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.719978, 39.391715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443601", "POINTID": "1102653998578", "FULLNAME": "Sleepy Holw", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.717475, 39.396715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443521", "POINTID": "1102654019825", "FULLNAME": "Simmons Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.721920, 39.424769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434821", "POINTID": "1102653979967", "FULLNAME": "Freeport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.725806, 39.658655 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449816", "POINTID": "1102653952667", "FULLNAME": "Hog Back", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.723030, 39.667823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292281", "FULLNAME": "Willis Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.715362, 39.721698 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292235", "FULLNAME": "Willis Airport Site No 2", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.722030, 39.732808 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431950", "POINTID": "1102654009101", "FULLNAME": "Caldwell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.717193, 39.787265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431806", "POINTID": "1102654008809", "FULLNAME": "Bunker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.716362, 39.967821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296554331", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.719149, 39.997562 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430164", "POINTID": "1102654006657", "FULLNAME": "Anderson Memorial Pk", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.720527, 40.045598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434129", "POINTID": "1102653977605", "FULLNAME": "Elmhurst", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.721362, 40.097818 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266178215", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.715230, 40.098475 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445832", "POINTID": "1102654002519", "FULLNAME": "Western Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.717193, 40.108095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12388 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266065337", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.725830, 40.137951 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12368 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432198", "POINTID": "1102654009433", "FULLNAME": "Carver Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.717472, 40.308650 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12324 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062996167", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.721160, 40.680618 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449679", "POINTID": "1102653986645", "FULLNAME": "la Fontaine", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.721316, 40.673897 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12323 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435598", "POINTID": "1102654013054", "FULLNAME": "Hale Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.716365, 40.688930 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062996167", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.721160, 40.680618 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435598", "POINTID": "1102654013054", "FULLNAME": "Hale Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.716365, 40.688930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12319 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444200", "POINTID": "1102654020428", "FULLNAME": "Stone Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.717754, 40.719207 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12304 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442749", "POINTID": "1102654019117", "FULLNAME": "Saint Patrick Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.719422, 40.843098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445066", "POINTID": "1102654021213", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.721925, 41.015600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432523", "POINTID": "1102654009909", "FULLNAME": "Circle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.715260, 41.122267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476298550", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.722148, 41.308759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140037831", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.715431, 41.393373 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139940618", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.716072, 41.392443 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443835", "POINTID": "1102653998855", "FULLNAME": "South Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.721096, 41.400880 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140037831", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.715431, 41.393373 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441105", "POINTID": "1102653994926", "FULLNAME": "Pickwick Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.725264, 41.416991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445874", "POINTID": "1102654021786", "FULLNAME": "Weybright Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.721096, 41.436157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333124153", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.717137, 41.672890 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333124145", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.715635, 41.675280 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333124153", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.717137, 41.672890 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047045026", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.723816, 41.685787 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729734172", "FULLNAME": "Canyoncrest Cir", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.719650, 41.689204 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047044935", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.725227, 41.690190 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729734172", "FULLNAME": "Canyoncrest Cir", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.719650, 41.689204 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8581, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333346332", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.724240, 41.754300 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12606 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110103620749", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.707374, 38.289985 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047287781", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.713216, 38.289097 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430239", "POINTID": "1102653965456", "FULLNAME": "Arctic Springs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.710370, 38.283583 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048134377", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.714978, 38.298176 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110103620749", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.707374, 38.289985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010899262874", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.713736, 38.300959 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888849112", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.705899, 38.301443 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048132979", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.708922, 38.311594 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106253830507", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.713401, 38.333075 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106253830506", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.712744, 38.332315 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048130539", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.705113, 38.331903 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888771270", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.715337, 38.333773 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888771359", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.714782, 38.334739 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048128727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.711676, 38.348037 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047834141", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.715217, 38.353527 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017128692513", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.713272, 38.390093 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016955189217", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.711341, 38.388119 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691474548", "FULLNAME": "Evan Dr", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.710225, 38.398956 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691475371", "FULLNAME": "Westwood Dr", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.708082, 38.400328 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017128694296", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.708715, 38.410178 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438255", "POINTID": "1102654015182", "FULLNAME": "Long Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.710517, 38.416453 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471661487", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.704885, 38.419099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015496756203", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.714978, 38.427906 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110103681406", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.714560, 38.424395 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107120069030", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.708436, 38.425777 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471661487", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.704885, 38.419099 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471601795", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.704273, 38.420879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015496756203", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.714978, 38.427906 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12566 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441871", "POINTID": "1102654018371", "FULLNAME": "Reeve Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.708018, 38.630891 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12561 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435226", "POINTID": "1102653981111", "FULLNAME": "Goshen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.709686, 38.671447 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440047", "POINTID": "1102653992517", "FULLNAME": "New Frankfort", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.711075, 38.736724 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12531 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438963", "POINTID": "1102654015886", "FULLNAME": "Meek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.705523, 38.932555 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292029", "FULLNAME": "White's Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.712478, 39.280603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442384", "POINTID": "1102653997186", "FULLNAME": "Rugby", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.714699, 39.309215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434589", "POINTID": "1102654012054", "FULLNAME": "Fletcher Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.709699, 39.341716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441357", "POINTID": "1102653995272", "FULLNAME": "Pleasure Vly", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.708586, 39.400881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103899912533", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.705215, 39.673971 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292281", "FULLNAME": "Willis Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.715362, 39.721698 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444271", "POINTID": "1102653999710", "FULLNAME": "Stringtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.708028, 39.788100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266195185", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.705569, 40.016243 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266178215", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.715230, 40.098475 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266185826", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.712813, 40.118979 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435299", "POINTID": "1102653981250", "FULLNAME": "Grandview", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.708305, 40.118374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266190585", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.714141, 40.126143 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434613", "POINTID": "1102653979247", "FULLNAME": "Florida", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.710249, 40.160316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430757", "POINTID": "1102654007332", "FULLNAME": "Bell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.709418, 40.285040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435677", "POINTID": "1102653950437", "FULLNAME": "Hanging Rock", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.707755, 40.829209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437345", "POINTID": "1102653986146", "FULLNAME": "Kinsey", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.704981, 41.096155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432523", "POINTID": "1102654009909", "FULLNAME": "Circle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.715260, 41.122267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436203", "POINTID": "1102654013584", "FULLNAME": "Hillcrest Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.710260, 41.185598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441110", "POINTID": "1102653994935", "FULLNAME": "Pierceton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.705539, 41.200322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12252 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433780", "POINTID": "1102653951883", "FULLNAME": "Dunham Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.711373, 41.272821 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430592", "POINTID": "1102653966972", "FULLNAME": "Bayfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.706929, 41.274767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430481", "POINTID": "1102653966627", "FULLNAME": "Barbee", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.712207, 41.290879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140037831", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.715431, 41.393373 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140037751", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.714155, 41.393389 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139940594", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.712226, 41.393238 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452398", "POINTID": "1102653962674", "FULLNAME": "South Shore Golf Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.707484, 41.389213 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140520357", "FULLNAME": "South Shore Golf Club", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -85.704906, 41.388704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140037831", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.715431, 41.393373 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140037751", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.714155, 41.393389 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139940594", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.712226, 41.393238 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444352", "POINTID": "1102653954843", "FULLNAME": "Sugar Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.704153, 41.485048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814302385", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.704289, 41.630737 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103897630598", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.707465, 41.647811 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333378162", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.714935, 41.672082 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046746802", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.711054, 41.669740 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730316906", "FULLNAME": "Highland Park Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.714943, 41.680060 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730316943", "FULLNAME": "Greenfield Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.713159, 41.676999 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439113", "POINTID": "1102653990494", "FULLNAME": "Middlebury", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.706103, 41.675328 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046989977", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.713036, 41.703129 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046591787", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.713650, 41.729567 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046591789", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.708774, 41.728270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12605 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888848615", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.698064, 38.297839 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888848807", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.703726, 38.300822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047288257", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.699011, 38.310308 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12602 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047070076", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.701749, 38.321325 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047290779", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.697348, 38.319427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048130537", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.703053, 38.332980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048130537", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.703053, 38.332980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445551", "POINTID": "1102654001950", "FULLNAME": "Watson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.699960, 38.348676 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311558787", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.694593, 38.349625 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110103664558", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.698069, 38.356745 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110103664025", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.695714, 38.351638 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107276940697", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.700617, 38.366892 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048128285", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.694472, 38.358806 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691763509", "FULLNAME": "Pine View Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.700253, 38.376168 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691763499", "FULLNAME": "Concord", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.698965, 38.375867 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691763509", "FULLNAME": "Pine View Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.700253, 38.376168 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471600969", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.702908, 38.423623 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047044679", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.693939, 38.443382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12565 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440796", "POINTID": "1102654017562", "FULLNAME": "Owens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.701073, 38.635335 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438649", "POINTID": "1102654015506", "FULLNAME": "Marsh Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.701913, 38.936164 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113221738", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.703844, 39.034503 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113221742", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.697388, 39.031182 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113221747", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.693260, 39.033911 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113221758", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.703383, 39.040068 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113221782", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.695615, 39.040793 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435839", "POINTID": "1102653982699", "FULLNAME": "Hartsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.697865, 39.267838 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434919", "POINTID": "1102654012308", "FULLNAME": "Galbraith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.703866, 39.298659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292426", "FULLNAME": "Fischer Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.697332, 39.465263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449851", "POINTID": "1102653956033", "FULLNAME": "Blue Ridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.699140, 39.496714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439467", "POINTID": "1102653991480", "FULLNAME": "Morristown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.698584, 39.673379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433345", "POINTID": "1102654011144", "FULLNAME": "Davis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.697190, 39.676463 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430291", "POINTID": "1102654006758", "FULLNAME": "Asbury Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.703305, 39.682544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292271", "FULLNAME": "Sauer-Harter Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.701197, 39.882808 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266195212", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.703337, 40.012936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266218589", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.695167, 40.052846 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266188729", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.696152, 40.056582 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266218589", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.695167, 40.052846 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052243763", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.694717, 40.065709 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441352", "POINTID": "1102654017965", "FULLNAME": "Pleasant Walk Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.693306, 40.065319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051939676", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.702007, 40.118435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434656", "POINTID": "1102653979456", "FULLNAME": "Forest Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.696640, 40.123651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292594", "FULLNAME": "Community Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.694422, 40.133128 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12342 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439077", "POINTID": "1102653990424", "FULLNAME": "Michaelsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.701918, 40.523650 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12338 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449431", "POINTID": "1102654002653", "FULLNAME": "Westwood Square", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.694419, 40.558929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12336 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1101956309141", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.703034, 40.578519 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12328 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434735", "POINTID": "1102653979739", "FULLNAME": "Fox", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.694974, 40.639761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12324 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00448390", "POINTID": "1102653964911", "FULLNAME": "America", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.701921, 40.679206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12323 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430131", "POINTID": "1102654006587", "FULLNAME": "America Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.699142, 40.680595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12294 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433307", "POINTID": "1102654011090", "FULLNAME": "Daniel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.699703, 40.928932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476289768", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.695041, 41.304685 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440312", "POINTID": "1102653993454", "FULLNAME": "North Webster", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.697761, 41.325602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140520354", "FULLNAME": "Our Lady of the Lake Smry", "MTFCC": "K1239" }, "geometry": { "type": "Point", "coordinates": [ -85.699689, 41.413216 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452411", "POINTID": "1102653963542", "FULLNAME": "Wawasee Golf Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.695540, 41.415046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446705", "POINTID": "1102654002005", "FULLNAME": "Wawasee", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.695819, 41.423936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292202", "FULLNAME": "Zollinger Strip", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.693429, 41.474758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436242", "POINTID": "1102654013629", "FULLNAME": "Hire Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.694985, 41.476715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444352", "POINTID": "1102653954843", "FULLNAME": "Sugar Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.704153, 41.485048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475954187", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.700422, 41.521889 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449696", "POINTID": "1102653990749", "FULLNAME": "Millersburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.694430, 41.527827 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814302385", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.704289, 41.630737 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047036369", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.693247, 41.635504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103865631646", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.701744, 41.640728 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333124098", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.703973, 41.670520 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691454993", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.694588, 41.671273 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485671955", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.703034, 41.678143 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435263", "POINTID": "1102654012692", "FULLNAME": "Grace Lawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.696932, 41.677271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8583, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046746790", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.704032, 41.684204 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12604 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048134029", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.683789, 38.302939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12603 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472398349", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.689502, 38.314726 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047286878", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.683135, 38.331821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047778818", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.687963, 38.334244 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047286905", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.683746, 38.334438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774332", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.684339, 38.346751 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691774069", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.683028, 38.356898 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441566", "POINTID": "1102653995649", "FULLNAME": "Prather", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.692737, 38.381732 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048126209", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.686498, 38.386485 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472682736", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.687332, 38.407128 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047045494", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.682515, 38.418712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12590 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048124083", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.690366, 38.422730 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431375", "POINTID": "1102654008129", "FULLNAME": "Bottoff Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.684446, 38.420852 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110103681385", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.693496, 38.442890 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110103681367", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.692439, 38.443623 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12587 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047045174", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.690728, 38.446434 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047045133", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.687695, 38.447400 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047045140", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.689505, 38.444827 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442169", "POINTID": "1102654018642", "FULLNAME": "Robinson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.684406, 38.491450 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12578 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443199", "POINTID": "1102654019473", "FULLNAME": "Seedtick Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.682183, 38.529506 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446327", "POINTID": "1102654003344", "FULLNAME": "Wooster", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.692742, 38.736724 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117307746", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.684876, 38.735199 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12535 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435038", "POINTID": "1102654012449", "FULLNAME": "German Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.684688, 38.896444 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444367", "POINTID": "1102654020566", "FULLNAME": "Sullivan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.684412, 38.952832 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442512", "POINTID": "1102654018873", "FULLNAME": "Saint Catherines Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.690245, 38.962554 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113221747", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.693260, 39.033911 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113221789", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.692152, 39.042792 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113221818", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.691554, 39.048286 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436030", "POINTID": "1102654013403", "FULLNAME": "Henry Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.684414, 39.072830 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446356", "POINTID": "1102654022295", "FULLNAME": "Wynn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.683575, 39.146441 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439648", "POINTID": "1102654016464", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.689422, 39.232829 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438952", "POINTID": "1102654015875", "FULLNAME": "Means Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.691364, 39.395881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292493", "FULLNAME": "Nasby Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.685087, 39.521145 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292493", "FULLNAME": "Nasby Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.685087, 39.521145 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103917997316", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.692107, 39.673715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447628", "POINTID": "1102654002556", "FULLNAME": "Westland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.687751, 39.750320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452148", "POINTID": "1102653995184", "FULLNAME": "Pleasant Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.687193, 39.866155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446097", "POINTID": "1102654002986", "FULLNAME": "Willow Branch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.684417, 39.876153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446097", "POINTID": "1102654002986", "FULLNAME": "Willow Branch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.684417, 39.876153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449697", "POINTID": "1102653990857", "FULLNAME": "Milners Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.692195, 39.916153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435926", "POINTID": "1102654013287", "FULLNAME": "Hays Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.682193, 39.919765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504132242", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.691230, 40.012720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266193722", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.692936, 40.052020 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435744", "POINTID": "1102653982481", "FULLNAME": "Harmeson Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.692195, 40.058654 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266168587", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.692860, 40.053720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441352", "POINTID": "1102654017965", "FULLNAME": "Pleasant Walk Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.693306, 40.065319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442693", "POINTID": "1102654019074", "FULLNAME": "Saint Marys Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.683862, 40.095596 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446297", "POINTID": "1102654003268", "FULLNAME": "Woodlawn Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.693035, 40.119087 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433028", "POINTID": "1102653974062", "FULLNAME": "Country Club Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.687196, 40.122818 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813348190", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.692767, 40.137032 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12388 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813348190", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.692767, 40.137032 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108483640599", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.684277, 40.276853 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12329 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292198", "FULLNAME": "Fox Station Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.686753, 40.635582 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089440843", "FULLNAME": "Lakeview Spring", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.687354, 41.286709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139975701", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.692472, 41.318310 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110139975750", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.690001, 41.319001 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476290504", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.689663, 41.334088 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434227", "POINTID": "1102653977920", "FULLNAME": "Epworth Forest", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.686093, 41.333101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105281398270", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.684159, 41.335922 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12240 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438796", "POINTID": "1102654015656", "FULLNAME": "McClintic Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.686651, 41.375601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438608", "POINTID": "1102653989438", "FULLNAME": "Marineland Gardens", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.684428, 41.378101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445238", "POINTID": "1102654001413", "FULLNAME": "Vawter Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.692485, 41.387547 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444420", "POINTID": "1102653999980", "FULLNAME": "Sunrise Beach", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.686651, 41.402825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140520363", "FULLNAME": "Wawasee Golf Club", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -85.692509, 41.415434 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437158", "POINTID": "1102653985740", "FULLNAME": "Kanata Manayunk", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.691651, 41.410325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292361", "FULLNAME": "Wawasee Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.690374, 41.418367 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292202", "FULLNAME": "Zollinger Strip", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.693429, 41.474758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333255244", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.692472, 41.517079 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047036369", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.693247, 41.635504 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047036399", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.688950, 41.633275 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476485419", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.690326, 41.707082 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730301661", "FULLNAME": "Echo Valley", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.686863, 41.707731 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333366035", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.689095, 41.727009 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110103681166", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.673900, 38.333788 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12599 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047773499", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.681740, 38.348741 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103686129476", "FULLNAME": "Couch Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.681295, 38.357822 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107276975970", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.679825, 38.353049 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691769615", "FULLNAME": "Rosemont Dr", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.678130, 38.359321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430003", "POINTID": "1102654006365", "FULLNAME": "Adams Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.678017, 38.392843 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12593 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047844244", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.681365, 38.397230 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047054891", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.680426, 38.409984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047045494", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.682515, 38.418712 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047045495", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.680745, 38.416800 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12578 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443199", "POINTID": "1102654019473", "FULLNAME": "Seedtick Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.682183, 38.529506 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12569 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445434", "POINTID": "1102654021504", "FULLNAME": "Walnut Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.674683, 38.605337 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432145", "POINTID": "1102654009333", "FULLNAME": "Carmel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.678575, 38.780890 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485569102", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.675225, 39.037813 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441693", "POINTID": "1102653995884", "FULLNAME": "Queensville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.677191, 39.051164 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430058", "POINTID": "1102653964379", "FULLNAME": "Alert", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.678307, 39.160329 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444498", "POINTID": "1102654020672", "FULLNAME": "Swinney Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.672755, 39.305606 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439951", "POINTID": "1102654016656", "FULLNAME": "Nauvoo Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.675254, 39.342272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445233", "POINTID": "1102654021313", "FULLNAME": "Vanpelt Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.675807, 39.418937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430811", "POINTID": "1102654007394", "FULLNAME": "Bennett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.675252, 39.568936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435926", "POINTID": "1102654013287", "FULLNAME": "Hays Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.682193, 39.919765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433114", "POINTID": "1102653974346", "FULLNAME": "Crestlawn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.680251, 40.074763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438942", "POINTID": "1102653990079", "FULLNAME": "Meadowbrook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.678028, 40.078652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430152", "POINTID": "1102653965006", "FULLNAME": "Anderson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.680251, 40.105319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445789", "POINTID": "1102654021722", "FULLNAME": "West Maplewood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.675528, 40.116708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106067748114", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.680166, 40.126840 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440209", "POINTID": "1102653993237", "FULLNAME": "North Anderson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.678028, 40.135318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12387 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052238130", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.672537, 40.145621 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12383 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441612", "POINTID": "1102653995736", "FULLNAME": "Prosperity", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.671915, 40.179207 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437972", "POINTID": "1102653988168", "FULLNAME": "Linwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.681638, 40.193651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12377 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106067868654", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.672722, 40.237169 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430066", "POINTID": "1102653964381", "FULLNAME": "Alexandria", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.675780, 40.262785 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12373 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430066", "POINTID": "1102653964381", "FULLNAME": "Alexandria", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.675780, 40.262785 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444069", "POINTID": "1102654020246", "FULLNAME": "Star Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.678859, 40.291149 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292179", "FULLNAME": "Marion Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.678497, 40.489345 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106043591950", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.679224, 40.517696 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12342 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437293", "POINTID": "1102653986021", "FULLNAME": "Kiley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.680251, 40.527538 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052326446", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.672291, 40.523228 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12340 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102648530741", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.679353, 40.546791 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435325", "POINTID": "1102654012761", "FULLNAME": "Grant Memorial Pk", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.675807, 40.539483 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12339 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311031559", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.680040, 40.548967 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12336 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102647290726", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.680681, 40.580654 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452372", "POINTID": "1102653961303", "FULLNAME": "Northgate Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.678586, 40.575316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102647290726", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.680681, 40.580654 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443248", "POINTID": "1102653998091", "FULLNAME": "Shady Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.674147, 40.589486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12328 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436604", "POINTID": "1102654013927", "FULLNAME": "Hummel-Lobdell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.674697, 40.646707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12320 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445345", "POINTID": "1102654021404", "FULLNAME": "Waggoner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.674420, 40.711152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437948", "POINTID": "1102653988102", "FULLNAME": "Lincolnville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.677754, 40.754487 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12310 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437740", "POINTID": "1102654014926", "FULLNAME": "Leedy Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.680533, 40.790598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110140033896", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.680249, 41.315419 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446388", "POINTID": "1102654003447", "FULLNAME": "Yellowbanks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.678873, 41.321712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452025", "POINTID": "1102653970936", "FULLNAME": "Buttermilk Pt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.674149, 41.377267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434649", "POINTID": "1102654012087", "FULLNAME": "Forest Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.676652, 41.631160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046591786", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.671829, 41.723342 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047036994", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.674997, 41.749569 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12601 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047780918", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.670102, 38.332934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047784316", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.666846, 38.336889 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017128759051", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.661012, 38.337278 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12594 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445051", "POINTID": "1102654021175", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.665794, 38.387286 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12589 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110104244553", "FULLNAME": "Charlestown Mid Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.670609, 38.435226 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12588 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110104244578", "FULLNAME": "Greenwell Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -85.664684, 38.445001 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012028297506", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.669509, 38.439422 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449443", "POINTID": "1102653959500", "FULLNAME": "Jay C Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.662181, 38.443117 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12587 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432425", "POINTID": "1102653972453", "FULLNAME": "Charlestown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.670239, 38.453118 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110104244555", "FULLNAME": "Jonathan Jennings Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.666717, 38.446142 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010899760476", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.664770, 38.447029 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12586 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110104244552", "FULLNAME": "Charlestown High School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.668216, 38.455985 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016953648700", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.660875, 38.459253 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432566", "POINTID": "1102653972857", "FULLNAME": "Clark Siding", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.663573, 38.472841 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442732", "POINTID": "1102654019096", "FULLNAME": "Saint Michaels Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.665794, 38.489506 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12580 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452176", "POINTID": "1102653959035", "FULLNAME": "Hughes Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.668294, 38.513117 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12576 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440733", "POINTID": "1102653994253", "FULLNAME": "Otisco", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.667184, 38.542283 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12574 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437262", "POINTID": "1102654014446", "FULLNAME": "Kern Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.669128, 38.557005 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12542 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436227", "POINTID": "1102653983778", "FULLNAME": "Hilltown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.662187, 38.837000 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435389", "POINTID": "1102654012842", "FULLNAME": "Green Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.663576, 38.937831 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444149", "POINTID": "1102654020362", "FULLNAME": "Stewart Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.670799, 38.956720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445582", "POINTID": "1102654002101", "FULLNAME": "Waynesburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.669421, 39.211162 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449037", "POINTID": "1102653991507", "FULLNAME": "Morven", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.661084, 39.422826 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273331516", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.669262, 39.446372 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445366", "POINTID": "1102654001721", "FULLNAME": "Waldron", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.666918, 39.453660 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438977", "POINTID": "1102653990226", "FULLNAME": "Meltzer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.668305, 39.518936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441801", "POINTID": "1102653996127", "FULLNAME": "Rays Crossing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.669139, 39.554490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433524", "POINTID": "1102654011301", "FULLNAME": "Dewitt Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.669694, 39.573379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443522", "POINTID": "1102654019836", "FULLNAME": "Simmons Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.663860, 39.861432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266195117", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.665282, 40.006187 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440976", "POINTID": "1102654017718", "FULLNAME": "Peewee Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.664139, 40.018098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266200159", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.663013, 40.055079 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438381", "POINTID": "1102653988761", "FULLNAME": "Lowmandale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.663305, 40.078096 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266067724", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.660722, 40.073460 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445225", "POINTID": "1102654021303", "FULLNAME": "Vandeventer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.669973, 40.083374 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438381", "POINTID": "1102653988761", "FULLNAME": "Lowmandale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.663305, 40.078096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436198", "POINTID": "1102653983628", "FULLNAME": "Hillcrest", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.664974, 40.107818 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434277", "POINTID": "1102653978173", "FULLNAME": "Ext Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.660250, 40.104763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438585", "POINTID": "1102654015441", "FULLNAME": "Maplewood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.664416, 40.115596 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434903", "POINTID": "1102654012280", "FULLNAME": "Funk Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.668860, 40.192262 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106067898050", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.662753, 40.192748 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433622", "POINTID": "1102654011375", "FULLNAME": "Donahue Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.664416, 40.223652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12377 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106067919404", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.668825, 40.234765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12376 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266210995", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.664190, 40.241295 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12375 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440900", "POINTID": "1102654017653", "FULLNAME": "Parkview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.668860, 40.253374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12344 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449432", "POINTID": "1102653960338", "FULLNAME": "Marion Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.669418, 40.511148 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472441970", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.665253, 40.519863 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12337 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316580886", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.670499, 40.572358 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316580885", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.668141, 40.571474 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12336 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316580886", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.670499, 40.572358 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105316580876", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.662957, 40.579933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452361", "POINTID": "1102653960568", "FULLNAME": "Meshingomesta Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.660529, 40.592262 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12287 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432855", "POINTID": "1102654010410", "FULLNAME": "Concord Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.661090, 40.987266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089441875", "FULLNAME": "Collamer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.664839, 41.075570 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436144", "POINTID": "1102653983460", "FULLNAME": "Highbanks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.671094, 41.323378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452412", "POINTID": "1102653963558", "FULLNAME": "Wawasee State Fish Hatchery", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.669429, 41.377825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437519", "POINTID": "1102654014695", "FULLNAME": "Lake Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.663040, 41.394492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813292587", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.670453, 41.403063 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431922", "POINTID": "1102654009050", "FULLNAME": "Byers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.665818, 41.416158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434064", "POINTID": "1102654011589", "FULLNAME": "Eldridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.660540, 41.623938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333123817", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.668152, 41.718985 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333123782", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.661905, 41.725276 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12600 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445181", "POINTID": "1102654001259", "FULLNAME": "Utica", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.653571, 38.333678 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047785492", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.650138, 38.352538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12558 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430888", "POINTID": "1102654007441", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.653850, 38.701169 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431188", "POINTID": "1102653968371", "FULLNAME": "Blocher", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.656629, 38.718114 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452192", "POINTID": "1102653994470", "FULLNAME": "Parkers Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.653850, 38.762002 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433488", "POINTID": "1102653975680", "FULLNAME": "Deputy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.653266, 38.794222 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432249", "POINTID": "1102654009526", "FULLNAME": "Cave Springs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.653582, 39.110052 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439293", "POINTID": "1102654016120", "FULLNAME": "Mitchell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.650251, 39.368105 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435861", "POINTID": "1102654013242", "FULLNAME": "Haskett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.652196, 39.701155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435066", "POINTID": "1102654012494", "FULLNAME": "Gilboa Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.652472, 39.775322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439942", "POINTID": "1102653992073", "FULLNAME": "Nashville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.659413, 39.928378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440036", "POINTID": "1102653992412", "FULLNAME": "New Columbus", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.655806, 40.018930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430101", "POINTID": "1102653964595", "FULLNAME": "Alliance", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.649972, 40.033375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431332", "POINTID": "1102654008050", "FULLNAME": "Booco Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.655041, 40.050831 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435493", "POINTID": "1102653981776", "FULLNAME": "Gridley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.652748, 40.088652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436832", "POINTID": "1102653985066", "FULLNAME": "Irondale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.657471, 40.098653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433946", "POINTID": "1102653976963", "FULLNAME": "Eastern Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.657195, 40.108930 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434292", "POINTID": "1102653978250", "FULLNAME": "Fairfax", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.649972, 40.104209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12387 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266175981", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.655886, 40.150550 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12375 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266136545", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.659939, 40.252215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12367 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445307", "POINTID": "1102654021357", "FULLNAME": "Vinson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.653303, 40.316706 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066212415", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.654521, 40.381696 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066212431", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.658145, 40.416326 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434304", "POINTID": "1102653978292", "FULLNAME": "Fairmount", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.650527, 40.415316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452379", "POINTID": "1102653961654", "FULLNAME": "Panorama Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.653306, 40.514205 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12338 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438611", "POINTID": "1102653989461", "FULLNAME": "Marion", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.659140, 40.558372 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452361", "POINTID": "1102653960568", "FULLNAME": "Meshingomesta Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.660529, 40.592262 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471604784", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.649261, 40.599077 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432331", "POINTID": "1102654009613", "FULLNAME": "Center Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.659142, 40.770042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440410", "POINTID": "1102654017064", "FULLNAME": "Oak Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.658037, 41.333379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446714", "POINTID": "1102653999638", "FULLNAME": "Stony Creek", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.649985, 41.534770 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434064", "POINTID": "1102654011589", "FULLNAME": "Eldridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.660540, 41.623938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047287302", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.659800, 41.721104 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047287310", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.660030, 41.724857 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438458", "POINTID": "1102654015370", "FULLNAME": "Mack Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.654709, 41.725882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12598 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047785491", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.648188, 38.350828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12597 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438293", "POINTID": "1102653988551", "FULLNAME": "Longview Beach", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.639404, 38.365479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12596 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047790432", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.644162, 38.371184 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12595 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047790536", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.645232, 38.383357 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047790519", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.643591, 38.378447 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12591 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434477", "POINTID": "1102654011958", "FULLNAME": "Fifty-Four Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.639683, 38.417286 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12585 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047025169", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.640633, 38.463830 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048008727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.643875, 38.480041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12571 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438691", "POINTID": "1102653989660", "FULLNAME": "Marysville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.643572, 38.585615 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12568 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430887", "POINTID": "1102654007438", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.648017, 38.612281 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442164", "POINTID": "1102654018640", "FULLNAME": "Robertson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.649130, 38.792834 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440866", "POINTID": "1102653994425", "FULLNAME": "Paris Crossing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.648019, 38.829501 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432832", "POINTID": "1102653973675", "FULLNAME": "Commiskey", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.645519, 38.859500 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113278184", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.649146, 38.993716 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113307778", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.648612, 38.992790 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113278184", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.649146, 38.993716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292303", "FULLNAME": "St Vincent Jennings Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.640600, 39.010670 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113224486", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.646608, 39.013901 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113224507", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.643449, 39.013845 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434508", "POINTID": "1102654011991", "FULLNAME": "Fish Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.640246, 39.070608 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443416", "POINTID": "1102654019703", "FULLNAME": "Shirk Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.644696, 39.211162 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439636", "POINTID": "1102654016451", "FULLNAME": "Mount Pisgah Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.643309, 39.248384 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432330", "POINTID": "1102654009609", "FULLNAME": "Center Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.646692, 39.283794 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431853", "POINTID": "1102653970742", "FULLNAME": "Burney", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.640252, 39.317271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431853", "POINTID": "1102653970742", "FULLNAME": "Burney", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.640252, 39.317271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432952", "POINTID": "1102654010584", "FULLNAME": "Copeland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.640252, 39.364493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441848", "POINTID": "1102654018354", "FULLNAME": "Reed Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.649140, 39.408659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439116", "POINTID": "1102653990519", "FULLNAME": "Middletown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.648862, 39.460047 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292436", "FULLNAME": "Whelen Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.647330, 39.493042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435569", "POINTID": "1102653982025", "FULLNAME": "Gwynneville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.648027, 39.660877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432645", "POINTID": "1102653973089", "FULLNAME": "Cleveland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.644693, 39.790311 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441874", "POINTID": "1102654018375", "FULLNAME": "Reeves Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.643028, 39.887544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435080", "POINTID": "1102654012514", "FULLNAME": "Gilmore Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.648306, 40.015598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266211340", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.639173, 40.050944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266200898", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.642344, 40.103315 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266066866", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.643698, 40.098986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435134", "POINTID": "1102653980981", "FULLNAME": "Glyn Ellen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.647748, 40.111153 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108345934087", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.647357, 40.103549 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266200898", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.642344, 40.103315 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052238006", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.646174, 40.115018 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445704", "POINTID": "1102654021670", "FULLNAME": "Wesley Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.648027, 40.201430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436340", "POINTID": "1102654013736", "FULLNAME": "Holson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.643859, 40.216429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441193", "POINTID": "1102654017876", "FULLNAME": "Pisgah Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.643583, 40.291149 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444402", "POINTID": "1102653999875", "FULLNAME": "Summitville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.644414, 40.338651 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439900", "POINTID": "1102654016637", "FULLNAME": "Musick Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.648027, 40.358095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066211596", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.643478, 40.430340 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440871", "POINTID": "1102654017624", "FULLNAME": "Park Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.644972, 40.431984 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066211596", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.643478, 40.430340 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12342 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436365", "POINTID": "1102653984079", "FULLNAME": "Home Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.640616, 40.523623 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12340 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436686", "POINTID": "1102654014070", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.639696, 40.539483 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12338 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472443711", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.640029, 40.561912 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471604565", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.648212, 40.596931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471604784", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.649261, 40.599077 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12300 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430081", "POINTID": "1102654006529", "FULLNAME": "Allbright Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.639420, 40.877543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015496368756", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.641590, 41.090337 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058098622", "FULLNAME": "Deniston Resource Area", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -85.643165, 41.226716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12253 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441251", "POINTID": "1102654017913", "FULLNAME": "Pleasant Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.641370, 41.266154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446117", "POINTID": "1102654003009", "FULLNAME": "Wilmot", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.641649, 41.310046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450549", "POINTID": "1102653984939", "FULLNAME": "Indian Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.639428, 41.365879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8588, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440096", "POINTID": "1102654016775", "FULLNAME": "New Pennsylvania Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.640541, 41.703938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12592 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447937", "POINTID": "1102653956741", "FULLNAME": "Charlestown Landing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.628289, 38.409091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12576 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444097", "POINTID": "1102654020289", "FULLNAME": "States Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.628850, 38.548117 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12575 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444097", "POINTID": "1102654020289", "FULLNAME": "States Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.628850, 38.548117 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12569 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439925", "POINTID": "1102653992020", "FULLNAME": "Nabb", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.632739, 38.605616 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437812", "POINTID": "1102654014949", "FULLNAME": "Lexington Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.634404, 38.649504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445192", "POINTID": "1102654021286", "FULLNAME": "Valley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.636628, 38.756723 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440864", "POINTID": "1102653994415", "FULLNAME": "Paris", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.633750, 38.824233 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452295", "POINTID": "1102653956836", "FULLNAME": "Coffee Creek Conservation Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.633855, 38.871999 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12533 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438350", "POINTID": "1102653988692", "FULLNAME": "Lovett", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.633020, 38.911443 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472463493", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.633876, 38.983542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113307631", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.634324, 38.997426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442690", "POINTID": "1102654019066", "FULLNAME": "Saint Marys Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.631357, 39.014499 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443031", "POINTID": "1102653997696", "FULLNAME": "Sardinia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.631084, 39.153940 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441642", "POINTID": "1102654018184", "FULLNAME": "Pumphrey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.637197, 39.340604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311091218", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.629987, 39.424086 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442758", "POINTID": "1102653997398", "FULLNAME": "Saint Paul", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.628305, 39.428103 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445286", "POINTID": "1102654021351", "FULLNAME": "Vienna Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.628860, 39.482270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431235", "POINTID": "1102653968575", "FULLNAME": "Blue Ridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.635526, 39.519213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441337", "POINTID": "1102654017957", "FULLNAME": "Pleasant View Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.633026, 39.756987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292246", "FULLNAME": "Oakes Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.635662, 39.786931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445486", "POINTID": "1102654001880", "FULLNAME": "Warrington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.633860, 39.907543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445373", "POINTID": "1102654021454", "FULLNAME": "Walker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.636083, 39.990043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110266219289", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.637344, 40.049850 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504113576", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.635139, 40.048546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015503775376", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.631956, 40.103331 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015503775376", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.631956, 40.103331 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015491910914", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.628917, 40.112958 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12377 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292661", "FULLNAME": "Alexandria Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.637527, 40.232511 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437105", "POINTID": "1102653985580", "FULLNAME": "Jonesboro", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.627750, 40.479761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105317186254", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.630872, 40.521262 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12342 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449478", "POINTID": "1102653967912", "FULLNAME": "Bethevan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.633305, 40.525040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442890", "POINTID": "1102654019225", "FULLNAME": "Salem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.636853, 40.581626 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12291 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442577", "POINTID": "1102654018988", "FULLNAME": "Saint Johns Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.632479, 40.946987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012028035372", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.627431, 41.075805 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443869", "POINTID": "1102653998922", "FULLNAME": "South Whitley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.628034, 41.084765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046680404", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.635201, 41.089065 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452105", "POINTID": "1102653981822", "FULLNAME": "Grismore", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.634705, 41.495605 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089432636", "FULLNAME": "Bontrager Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.631304, 41.676157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12577 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440084", "POINTID": "1102653992652", "FULLNAME": "New Market", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.616865, 38.535601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437811", "POINTID": "1102653987838", "FULLNAME": "Lexington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.625239, 38.652281 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436449", "POINTID": "1102654013791", "FULLNAME": "Hopewell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.623941, 38.882667 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440310", "POINTID": "1102653993444", "FULLNAME": "North Vernon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.623576, 39.006166 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436188", "POINTID": "1102654013572", "FULLNAME": "Hill Crest Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.622163, 39.014711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445690", "POINTID": "1102654021665", "FULLNAME": "Wesley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.621085, 39.175607 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439138", "POINTID": "1102653990638", "FULLNAME": "Milford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.617946, 39.350320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445093", "POINTID": "1102654021217", "FULLNAME": "Union Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.624419, 39.402271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445093", "POINTID": "1102654021217", "FULLNAME": "Union Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.624419, 39.402271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447643", "POINTID": "1102653980607", "FULLNAME": "Germantown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.626360, 39.415327 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438518", "POINTID": "1102653989169", "FULLNAME": "Manilla", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.619406, 39.574214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103849808613", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.623002, 39.969052 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103849772731", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.619451, 39.972450 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103849686808", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.617509, 39.984307 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051980720", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.625819, 40.122535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12387 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439994", "POINTID": "1102654016718", "FULLNAME": "Nelson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.627192, 40.150874 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442091", "POINTID": "1102654018591", "FULLNAME": "Riverside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.622471, 40.484484 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052586060", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.617743, 40.481057 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12341 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472444176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.619408, 40.536167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12331 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434326", "POINTID": "1102654011833", "FULLNAME": "Fairview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.619695, 40.616707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430476", "POINTID": "1102653966575", "FULLNAME": "Banquo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.619695, 40.696431 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12292 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431097", "POINTID": "1102653968096", "FULLNAME": "Bippus", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.623866, 40.944210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12288 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434904", "POINTID": "1102654012281", "FULLNAME": "Funk Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.622200, 40.972823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12287 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431433", "POINTID": "1102653969149", "FULLNAME": "Bracken", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.623866, 40.986712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104695283334", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.626969, 41.076834 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019665352296", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.623705, 41.079258 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977494467", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.626637, 41.091980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441961", "POINTID": "1102654018491", "FULLNAME": "Richland Center Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.625255, 41.132821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437560", "POINTID": "1102654014749", "FULLNAME": "Lakeview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.624148, 41.175599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437635", "POINTID": "1102653987280", "FULLNAME": "Larwill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.625534, 41.180600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444830", "POINTID": "1102654020992", "FULLNAME": "Town Line Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.617761, 41.608937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431328", "POINTID": "1102654008011", "FULLNAME": "Bontrager Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.624985, 41.625049 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440916", "POINTID": "1102654017679", "FULLNAME": "Pashan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.623871, 41.645605 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430904", "POINTID": "1102654007507", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.621374, 41.739217 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107120229757", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.609227, 38.485876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442390", "POINTID": "1102653997199", "FULLNAME": "Runyantown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.614682, 38.489506 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430451", "POINTID": "1102654006930", "FULLNAME": "Baldwin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.611632, 38.976165 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445255", "POINTID": "1102654001470", "FULLNAME": "Vernon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.609412, 38.984776 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445257", "POINTID": "1102654021324", "FULLNAME": "Vernon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.609133, 38.980054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113309983", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.614961, 38.998365 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113286560", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.606617, 39.005775 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12513 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431498", "POINTID": "1102653969421", "FULLNAME": "Brewersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.611635, 39.084496 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438375", "POINTID": "1102654015259", "FULLNAME": "Lower Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.612472, 39.219217 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12493 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434651", "POINTID": "1102653979449", "FULLNAME": "Forest Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.613309, 39.256995 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430273", "POINTID": "1102654006737", "FULLNAME": "Arnold Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.609972, 39.443103 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432430", "POINTID": "1102653972483", "FULLNAME": "Charlottesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.612778, 39.790309 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443562", "POINTID": "1102654019863", "FULLNAME": "Sixmile Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.606359, 39.815045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110303609", "FULLNAME": "Eastern Hancock Elem Middle High School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.609117, 39.825436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110303609", "FULLNAME": "Eastern Hancock Elem Middle High School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.609117, 39.825436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446041", "POINTID": "1102654002931", "FULLNAME": "Wilkinson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.608816, 39.885864 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438829", "POINTID": "1102654015692", "FULLNAME": "McCray Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.615806, 39.893098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438628", "POINTID": "1102653989532", "FULLNAME": "Markleville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.614693, 39.977821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432638", "POINTID": "1102654010026", "FULLNAME": "Clem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.610248, 40.055322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051980394", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.611756, 40.092592 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051980414", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.608296, 40.094658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051980380", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.612064, 40.095807 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292589", "FULLNAME": "Anderson Muni-Darlington Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.611718, 40.108041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431560", "POINTID": "1102654008509", "FULLNAME": "Bronnenberg Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.609972, 40.117541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052335268", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.605447, 40.127096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445374", "POINTID": "1102654021459", "FULLNAME": "Walker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.610248, 40.283929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434985", "POINTID": "1102653980362", "FULLNAME": "Gas City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.613027, 40.487261 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445414", "POINTID": "1102654021485", "FULLNAME": "Walnut Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.606078, 40.494204 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015482125684", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.606268, 40.497939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431571", "POINTID": "1102653969806", "FULLNAME": "Brookhaven", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.615806, 40.519761 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443238", "POINTID": "1102653998079", "FULLNAME": "Shadeland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.609972, 40.605040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434950", "POINTID": "1102654012377", "FULLNAME": "Gardens of Memory", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.614140, 40.665041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433147", "POINTID": "1102653974513", "FULLNAME": "Cromwell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.615798, 41.400628 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108644682924", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.595467, 38.654198 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12560 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436483", "POINTID": "1102654013813", "FULLNAME": "Horner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.594405, 38.677836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292347", "FULLNAME": "Wilkerson's Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.602296, 38.713102 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444387", "POINTID": "1102654020577", "FULLNAME": "Summerfield Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.595244, 39.027277 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292340", "FULLNAME": "North Vernon Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.604331, 39.044765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292340", "FULLNAME": "North Vernon Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.604331, 39.044765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433998", "POINTID": "1102654011540", "FULLNAME": "Eddleman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.598584, 39.156718 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445858", "POINTID": "1102654021776", "FULLNAME": "Westport Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.598028, 39.174218 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434488", "POINTID": "1102654011969", "FULLNAME": "Finley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.594694, 39.217550 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442748", "POINTID": "1102653997395", "FULLNAME": "Saint Omer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.595805, 39.435603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292186", "FULLNAME": "Sugar Creek Air Park", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.597331, 39.919708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432121", "POINTID": "1102654009268", "FULLNAME": "Capp Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.604138, 40.022266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292648", "FULLNAME": "Burk Personal Use Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.601472, 40.050029 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052253981", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.601408, 40.092512 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432454", "POINTID": "1102653972585", "FULLNAME": "Chesterfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.596915, 40.112542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052335268", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.605447, 40.127096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12383 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439388", "POINTID": "1102654016194", "FULLNAME": "Moonville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.602191, 40.186707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439387", "POINTID": "1102653991345", "FULLNAME": "Moonville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.601360, 40.193930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430898", "POINTID": "1102654007469", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.596915, 40.455317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430898", "POINTID": "1102654007469", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.596915, 40.455317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015482125830", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.600061, 40.489229 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015482125839", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.599219, 40.489221 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12311 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439373", "POINTID": "1102654016180", "FULLNAME": "Monument City Memorial Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.602752, 40.785877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12302 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430170", "POINTID": "1102653965058", "FULLNAME": "Andrews", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.601641, 40.862544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442092", "POINTID": "1102654018592", "FULLNAME": "Riverside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.596387, 40.870854 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432646", "POINTID": "1102654010049", "FULLNAME": "Cleveland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.601923, 41.071156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432646", "POINTID": "1102654010049", "FULLNAME": "Cleveland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.601923, 41.071156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446710", "POINTID": "1102654001899", "FULLNAME": "Washington Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.597202, 41.325046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12243 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450519", "POINTID": "1102654008484", "FULLNAME": "Broadway Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.597202, 41.351436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445193", "POINTID": "1102654021287", "FULLNAME": "Valley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.596926, 41.391992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8592, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436400", "POINTID": "1102653984152", "FULLNAME": "Honeyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.601649, 41.581715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442263", "POINTID": "1102653996927", "FULLNAME": "Rolling Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.588571, 38.478118 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12569 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430499", "POINTID": "1102654007028", "FULLNAME": "Barnes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.588847, 38.604505 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12560 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436483", "POINTID": "1102654013813", "FULLNAME": "Horner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.594405, 38.677836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113311969", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.592232, 38.943468 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435761", "POINTID": "1102653982499", "FULLNAME": "Harper", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.593581, 39.146720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434488", "POINTID": "1102654011969", "FULLNAME": "Finley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.594694, 39.217550 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440925", "POINTID": "1102654017691", "FULLNAME": "Patrick Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.592473, 39.271438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12479 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292086", "FULLNAME": "Schoettmer Farm Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.590945, 39.370819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439609", "POINTID": "1102654016445", "FULLNAME": "Mount Morrison Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.587192, 39.482825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01984224", "POINTID": "1102654018244", "FULLNAME": "Radar-Bowman-Worland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.586916, 39.506992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292439", "FULLNAME": "Webster Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.586471, 39.576143 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443211", "POINTID": "1102654019478", "FULLNAME": "Sells Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.584971, 39.598658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438033", "POINTID": "1102654015042", "FULLNAME": "Little Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.583303, 39.670044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446674", "POINTID": "1102653983213", "FULLNAME": "Henry", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.587471, 39.785878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292320", "FULLNAME": "Willcox Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.590639, 39.822807 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438580", "POINTID": "1102653989281", "FULLNAME": "Maple Vly", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.586916, 39.866989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432785", "POINTID": "1102654010303", "FULLNAME": "Collier Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.592750, 39.966154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437193", "POINTID": "1102654014380", "FULLNAME": "Keesling Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.586637, 40.054209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052335312", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.589756, 40.116852 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052335302", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.588480, 40.116413 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052335303", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.586165, 40.115219 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435948", "POINTID": "1102654013297", "FULLNAME": "Heagy Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.589137, 40.194206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015482126356", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.590843, 40.488289 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066208335", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.591934, 40.494649 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12297 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438553", "POINTID": "1102654015412", "FULLNAME": "Maple Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.593308, 40.901155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12289 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438495", "POINTID": "1102653989083", "FULLNAME": "Makin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.585532, 40.965876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450565", "POINTID": "1102654016016", "FULLNAME": "Metz Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.586369, 41.322268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440446", "POINTID": "1102654017093", "FULLNAME": "Oak Park Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.585258, 41.453937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437883", "POINTID": "1102653987990", "FULLNAME": "Ligonier", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.587482, 41.465881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292660", "FULLNAME": "Hull Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.591760, 41.484202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8593, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292587", "FULLNAME": "Wolfe Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.594265, 41.690871 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048008987", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.581428, 38.491291 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113311787", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.575594, 38.964827 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435371", "POINTID": "1102653981460", "FULLNAME": "Grayford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.574130, 38.962831 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430636", "POINTID": "1102654007164", "FULLNAME": "Bear Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.579607, 39.092418 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433366", "POINTID": "1102654011157", "FULLNAME": "Day Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.581635, 39.119775 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110106430065", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.582370, 39.172511 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110106429951", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.577491, 39.167190 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110106428052", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.581243, 39.175193 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445857", "POINTID": "1102654002610", "FULLNAME": "Westport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.573027, 39.175884 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437795", "POINTID": "1102653987718", "FULLNAME": "Letts Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.574972, 39.234773 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432814", "POINTID": "1102654010330", "FULLNAME": "Columbia Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.575251, 39.267827 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439787", "POINTID": "1102654016593", "FULLNAME": "Mowery Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.579138, 39.332829 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117026267", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.579231, 39.481514 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117026257", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.576713, 39.493740 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436372", "POINTID": "1102653984116", "FULLNAME": "Homer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.578027, 39.578101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430245", "POINTID": "1102653965561", "FULLNAME": "Arlington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.576359, 39.642545 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438033", "POINTID": "1102654015042", "FULLNAME": "Little Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.583303, 39.670044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442086", "POINTID": "1102654018569", "FULLNAME": "Riverside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.576638, 39.745043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443421", "POINTID": "1102653998311", "FULLNAME": "Shirley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.576914, 39.891989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12377 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435078", "POINTID": "1102653980462", "FULLNAME": "Gehring and Gumz Ditch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.578303, 40.234485 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434733", "POINTID": "1102653979722", "FULLNAME": "Fowlerton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.573583, 40.409485 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12339 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431875", "POINTID": "1102654008935", "FULLNAME": "Burson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.577472, 40.553492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435674", "POINTID": "1102653982280", "FULLNAME": "Hanfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.580251, 40.604486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12285 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438413", "POINTID": "1102653988790", "FULLNAME": "Luther", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.573864, 41.002822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12252 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434242", "POINTID": "1102653978007", "FULLNAME": "Etna", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.573591, 41.273656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051964892", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.574959, 41.310415 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089432475", "FULLNAME": "Maple Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.573438, 41.524787 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443413", "POINTID": "1102653998296", "FULLNAME": "Shipshewana", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.580261, 41.672828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443413", "POINTID": "1102653998296", "FULLNAME": "Shipshewana", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.580261, 41.672828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8595, "y": 12581 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440636", "POINTID": "1102654017409", "FULLNAME": "Olive Branch Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.568014, 38.504507 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107120410892", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.567583, 38.497868 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8595, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449041", "POINTID": "1102653993655", "FULLNAME": "Oakdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.561880, 39.019657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8595, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437794", "POINTID": "1102653987707", "FULLNAME": "Letts", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.564973, 39.235052 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8595, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436474", "POINTID": "1102653984322", "FULLNAME": "Horace", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.564088, 39.262538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8595, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434275", "POINTID": "1102653978147", "FULLNAME": "Ewington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.568028, 39.326438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8595, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117026233", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.564857, 39.494913 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8595, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435248", "POINTID": "1102653981151", "FULLNAME": "Gowdy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.563025, 39.518936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8595, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436656", "POINTID": "1102654013993", "FULLNAME": "Hurst Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.564970, 39.561436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8595, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433911", "POINTID": "1102654011500", "FULLNAME": "East Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.566081, 39.639490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8595, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433911", "POINTID": "1102654011500", "FULLNAME": "East Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.566081, 39.639490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8595, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432194", "POINTID": "1102653971677", "FULLNAME": "Carthage", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.571914, 39.738377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8595, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438957", "POINTID": "1102654015885", "FULLNAME": "Mechanicsburg Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.562194, 40.004488 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8595, "y": 12339 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437546", "POINTID": "1102653986918", "FULLNAME": "Lake Wood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.568106, 40.553471 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8595, "y": 12307 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449667", "POINTID": "1102653982450", "FULLNAME": "Harlansburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.564418, 40.814487 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8595, "y": 12298 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472290222", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.566199, 40.894927 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8595, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430006", "POINTID": "1102654006381", "FULLNAME": "Adams Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.571367, 41.221434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8595, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435032", "POINTID": "1102654012443", "FULLNAME": "Gerber Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.568315, 41.538659 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089432570", "FULLNAME": "Eden Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.566622, 41.539508 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8595, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504108401", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.568765, 41.658289 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8595, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110337547481", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.564755, 41.687992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445264", "POINTID": "1102654001494", "FULLNAME": "Vesta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.550513, 38.485062 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444470", "POINTID": "1102654000077", "FULLNAME": "Swanville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.558570, 38.686448 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438192", "POINTID": "1102654015157", "FULLNAME": "Lloyd Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.554684, 38.757836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445360", "POINTID": "1102654001681", "FULLNAME": "Wakefield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.559960, 38.787279 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439993", "POINTID": "1102654016717", "FULLNAME": "Nelson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.558852, 38.845056 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445437", "POINTID": "1102654001802", "FULLNAME": "Walnut Ridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.556073, 38.925056 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433969", "POINTID": "1102654011520", "FULLNAME": "Ebenezer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.556907, 38.985888 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430001", "POINTID": "1102653964023", "FULLNAME": "Adams", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.559970, 39.382548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433674", "POINTID": "1102653976165", "FULLNAME": "Downeyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.554271, 39.427790 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433674", "POINTID": "1102653976165", "FULLNAME": "Downeyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.554271, 39.427790 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439481", "POINTID": "1102653991522", "FULLNAME": "Moscow", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.556636, 39.485325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431420", "POINTID": "1102653969118", "FULLNAME": "Boyd", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.551082, 39.718657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432195", "POINTID": "1102654009424", "FULLNAME": "Carthage Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.558302, 39.753933 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292399", "FULLNAME": "Small Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.556221, 39.751376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449694", "POINTID": "1102653990120", "FULLNAME": "Mechanicsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.557194, 40.005045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106068080352", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.555295, 40.019791 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433295", "POINTID": "1102653975014", "FULLNAME": "Daleville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.558026, 40.121153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12339 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433640", "POINTID": "1102653976092", "FULLNAME": "Dooville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.559978, 40.553536 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437603", "POINTID": "1102654014785", "FULLNAME": "Landess Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.560526, 40.602262 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12332 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437602", "POINTID": "1102653987165", "FULLNAME": "Landess", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.561084, 40.610874 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12290 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292302", "FULLNAME": "Beck Private Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.561199, 40.960588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444950", "POINTID": "1102654001016", "FULLNAME": "Tunker", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.557476, 41.048654 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438307", "POINTID": "1102653988608", "FULLNAME": "Lorane", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.558589, 41.206990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12255 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437290", "POINTID": "1102654014507", "FULLNAME": "Kiester Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.557479, 41.251712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443141", "POINTID": "1102654019420", "FULLNAME": "Scott Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.556368, 41.288378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292621", "FULLNAME": "Miller Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.550926, 41.514201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435907", "POINTID": "1102654013278", "FULLNAME": "Hawpatch Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.558871, 41.546715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438408", "POINTID": "1102654015312", "FULLNAME": "Lupold Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.557205, 41.665883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443137", "POINTID": "1102653997848", "FULLNAME": "Scott", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.556929, 41.733661 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12586 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452141", "POINTID": "1102653980621", "FULLNAME": "Germany", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.542777, 38.462265 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440789", "POINTID": "1102653994306", "FULLNAME": "Owen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.541919, 38.458115 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12585 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452141", "POINTID": "1102653980621", "FULLNAME": "Germany", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.542777, 38.462265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445264", "POINTID": "1102654001494", "FULLNAME": "Vesta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.550513, 38.485062 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12574 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440123", "POINTID": "1102653992940", "FULLNAME": "New Washington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.539680, 38.563116 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12555 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445958", "POINTID": "1102654021896", "FULLNAME": "White River Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.549681, 38.722559 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443609", "POINTID": "1102654019894", "FULLNAME": "Slippery Point Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.539682, 38.722280 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437252", "POINTID": "1102654014441", "FULLNAME": "Kent Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.545516, 38.741168 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431178", "POINTID": "1102654007775", "FULLNAME": "Blankenship Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.543848, 38.740892 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437251", "POINTID": "1102653985890", "FULLNAME": "Kent", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.539983, 38.737816 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437660", "POINTID": "1102654014844", "FULLNAME": "Lawler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.548571, 38.783112 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436492", "POINTID": "1102654013829", "FULLNAME": "Horseshoe Bend Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.550180, 39.179813 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438583", "POINTID": "1102653989321", "FULLNAME": "Mapleton Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.546082, 39.190884 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438582", "POINTID": "1102654015440", "FULLNAME": "Mapleton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.546361, 39.205050 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12477 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439573", "POINTID": "1102654016396", "FULLNAME": "Mount Hebron Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.549692, 39.391715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292431", "FULLNAME": "Stevens Farms Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.547053, 39.659987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435319", "POINTID": "1102653981332", "FULLNAME": "Grant City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.542469, 39.866433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452162", "POINTID": "1102654003316", "FULLNAME": "Woodville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.544693, 39.915600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450906", "POINTID": "1102654011868", "FULLNAME": "Fattic Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.545248, 40.022266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292250", "FULLNAME": "Diamond P Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.539932, 40.208696 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437085", "POINTID": "1102654014297", "FULLNAME": "Jones Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.546079, 40.217819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12329 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437732", "POINTID": "1102654014921", "FULLNAME": "Lee Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.547471, 40.638096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449712", "POINTID": "1102653995207", "FULLNAME": "Pleasant Plain", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.545250, 40.696709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430901", "POINTID": "1102654007487", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.541367, 41.169211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12249 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450573", "POINTID": "1102653994163", "FULLNAME": "Ormas", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.546077, 41.295079 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450603", "POINTID": "1102654020894", "FULLNAME": "Thorn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.541646, 41.303101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437309", "POINTID": "1102653986045", "FULLNAME": "Kimmell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.548314, 41.395327 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444816", "POINTID": "1102654000759", "FULLNAME": "Topeka", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.539701, 41.539215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434168", "POINTID": "1102653977744", "FULLNAME": "Emma", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.541093, 41.611161 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8597, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439196", "POINTID": "1102654016095", "FULLNAME": "Miller Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.541648, 41.654493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12586 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444432", "POINTID": "1102654000001", "FULLNAME": "Sunset Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.534401, 38.457006 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12574 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440123", "POINTID": "1102653992940", "FULLNAME": "New Washington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.539680, 38.563116 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433210", "POINTID": "1102654010990", "FULLNAME": "Crown Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.538499, 38.559228 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12555 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443609", "POINTID": "1102654019894", "FULLNAME": "Slippery Point Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.539682, 38.722280 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437608", "POINTID": "1102654014790", "FULLNAME": "Landon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.535238, 38.740335 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432580", "POINTID": "1102654009977", "FULLNAME": "Clashman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.532462, 38.827556 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439981", "POINTID": "1102653992212", "FULLNAME": "Neff Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.532191, 39.165329 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110106437825", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.534237, 39.318236 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434680", "POINTID": "1102654012106", "FULLNAME": "Forsythe Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.529415, 39.352549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435147", "POINTID": "1102654012578", "FULLNAME": "Goddard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.538025, 39.589768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430457", "POINTID": "1102654006945", "FULLNAME": "Ball Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.532746, 39.673100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434397", "POINTID": "1102653978516", "FULLNAME": "Farmers", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.537190, 39.698934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109098005091", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.529109, 39.790841 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435109", "POINTID": "1102654012560", "FULLNAME": "Glencove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.533580, 39.804489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443044", "POINTID": "1102654019331", "FULLNAME": "Saunders Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.533025, 40.122264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046660197", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.535409, 40.206164 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262901921", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.530640, 40.215798 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12375 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430880", "POINTID": "1102653967885", "FULLNAME": "Bethel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.533856, 40.250041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12300 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105633045110", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.536085, 40.879234 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105633045097", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.533100, 40.878393 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12299 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105633045096", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.532376, 40.880167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442802", "POINTID": "1102654019173", "FULLNAME": "Saint Peters Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.529420, 41.090600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296184230", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.532521, 41.315308 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051965550", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.532153, 41.312109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444669", "POINTID": "1102653954916", "FULLNAME": "The Knobs", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.532757, 41.486716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444816", "POINTID": "1102654000759", "FULLNAME": "Topeka", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.539701, 41.539215 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110337810284", "FULLNAME": "Topeka Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -85.534471, 41.540638 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110337512658", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.534025, 41.542775 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8598, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443477", "POINTID": "1102654019787", "FULLNAME": "Sidener Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.528594, 41.713662 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12581 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436086", "POINTID": "1102653983348", "FULLNAME": "Hibernia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.525512, 38.502007 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432440", "POINTID": "1102653972527", "FULLNAME": "Chelsea", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.524960, 38.650616 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434638", "POINTID": "1102654012086", "FULLNAME": "Ford Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.527180, 38.781168 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445316", "POINTID": "1102654001596", "FULLNAME": "Volga", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.518015, 38.783946 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443382", "POINTID": "1102654019661", "FULLNAME": "Shiloh Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.517739, 38.788669 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12542 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440516", "POINTID": "1102654017143", "FULLNAME": "Ogden Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.527738, 38.831447 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437590", "POINTID": "1102653987126", "FULLNAME": "Lancaster", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.518571, 38.831447 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12531 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431968", "POINTID": "1102654009147", "FULLNAME": "Callicotte Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.523852, 38.930333 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436450", "POINTID": "1102654013792", "FULLNAME": "Hopewell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.519131, 39.015330 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431907", "POINTID": "1102654009016", "FULLNAME": "Butlerville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.526631, 39.041163 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444092", "POINTID": "1102654020273", "FULLNAME": "State School Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.525520, 39.040332 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442241", "POINTID": "1102654018664", "FULLNAME": "Rodney Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.523581, 39.199494 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441167", "POINTID": "1102653995060", "FULLNAME": "Pinhook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.517471, 39.219495 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435000", "POINTID": "1102653980430", "FULLNAME": "Gaynorsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.519971, 39.242827 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504089333", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.524058, 39.262887 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504089301", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.521754, 39.262887 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435781", "POINTID": "1102653982532", "FULLNAME": "Harris City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.527191, 39.281438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433077", "POINTID": "1102653974206", "FULLNAME": "Craig", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.519413, 39.332273 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110106430619", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.527701, 39.441631 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436004", "POINTID": "1102653983172", "FULLNAME": "Henderson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.520247, 39.669489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430755", "POINTID": "1102654007327", "FULLNAME": "Bell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.522747, 39.771710 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437394", "POINTID": "1102653986405", "FULLNAME": "Knightstown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.526357, 39.795599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813347289", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.528272, 39.905379 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437241", "POINTID": "1102653985862", "FULLNAME": "Kennard", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.519415, 39.903934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262902000", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.524522, 40.217954 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441859", "POINTID": "1102653996239", "FULLNAME": "Reed Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.518023, 40.215042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12368 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444703", "POINTID": "1102654020887", "FULLNAME": "Thompson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.524691, 40.310597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12309 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435043", "POINTID": "1102654012488", "FULLNAME": "German Settlement Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.525249, 40.799210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12304 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441250", "POINTID": "1102654017912", "FULLNAME": "Pleasant Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.526362, 40.843934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12300 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439582", "POINTID": "1102654016406", "FULLNAME": "Mount Hope Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.517474, 40.878376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12296 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064512998", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.519552, 40.912917 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058042437", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.523922, 41.159424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015496728063", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.519665, 41.165839 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292570", "FULLNAME": "Plew Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.520368, 41.185031 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051965533", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.527242, 41.311658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433529", "POINTID": "1102653951679", "FULLNAME": "Diamond Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.522479, 41.445326 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443477", "POINTID": "1102654019787", "FULLNAME": "Sidener Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.528594, 41.713662 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430549", "POINTID": "1102654007087", "FULLNAME": "Barton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.524981, 41.735328 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12558 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432144", "POINTID": "1102654009328", "FULLNAME": "Carmel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.507737, 38.702280 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439959", "POINTID": "1102654016662", "FULLNAME": "Neavill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.513571, 38.784781 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439960", "POINTID": "1102653992132", "FULLNAME": "Neavill Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.511626, 38.783390 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443382", "POINTID": "1102654019661", "FULLNAME": "Shiloh Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.517739, 38.788669 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437341", "POINTID": "1102654014563", "FULLNAME": "Kinnear Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.507182, 38.790058 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12544 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438887", "POINTID": "1102654015756", "FULLNAME": "McKay Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.510237, 38.816445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12542 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432771", "POINTID": "1102654010280", "FULLNAME": "College Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.513850, 38.831447 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434542", "POINTID": "1102653978967", "FULLNAME": "Five Points", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.509126, 38.846167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047956", "FULLNAME": "County Infirmary", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.514402, 38.848866 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112799363", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.508338, 38.875380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433805", "POINTID": "1102653976534", "FULLNAME": "Dupont", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.514129, 38.890056 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436593", "POINTID": "1102654013912", "FULLNAME": "Hughes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.514129, 38.943944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431906", "POINTID": "1102653970910", "FULLNAME": "Butlerville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.512742, 39.034499 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292351", "FULLNAME": "Brush Creek Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.512085, 39.045203 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441167", "POINTID": "1102653995060", "FULLNAME": "Pinhook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.517471, 39.219495 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431840", "POINTID": "1102654008893", "FULLNAME": "Burks Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.515800, 39.229768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046037927", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.510996, 39.322121 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046037928", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.509438, 39.331080 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110106435390", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.511878, 39.348930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443384", "POINTID": "1102654019668", "FULLNAME": "Shiloh Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.510524, 39.395326 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445056", "POINTID": "1102654021180", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.511913, 39.445881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438786", "POINTID": "1102654015646", "FULLNAME": "McCarty Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.516079, 39.511160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440703", "POINTID": "1102654017499", "FULLNAME": "Ormes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.514413, 39.563380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440703", "POINTID": "1102654017499", "FULLNAME": "Ormes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.514413, 39.563380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430685", "POINTID": "1102654007217", "FULLNAME": "Bebout Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.508024, 39.593935 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435391", "POINTID": "1102654012844", "FULLNAME": "Green Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.512190, 39.615603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00448342", "POINTID": "1102653999791", "FULLNAME": "Sulphur Spring", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.515803, 39.770044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441802", "POINTID": "1102653996139", "FULLNAME": "Raysville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.512469, 39.796156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262962791", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.514346, 40.058526 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435898", "POINTID": "1102654013263", "FULLNAME": "Hawk Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.510803, 40.193653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066213949", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.515719, 40.382574 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12319 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441670", "POINTID": "1102654018199", "FULLNAME": "Purviance Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.507193, 40.721709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446652", "POINTID": "1102653996600", "FULLNAME": "River", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.506916, 40.754210 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437591", "POINTID": "1102653987139", "FULLNAME": "Lancaster", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.506916, 40.748931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12302 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110741359866", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.514099, 40.863083 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12300 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439582", "POINTID": "1102654016406", "FULLNAME": "Mount Hope Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.517474, 40.878376 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064513604", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.506613, 40.879678 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12299 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064511847", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.513603, 40.885060 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064514722", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.509644, 40.884843 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12297 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441142", "POINTID": "1102654017842", "FULLNAME": "Pilgrims Rest Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.514984, 40.904214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12296 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439527", "POINTID": "1102654016332", "FULLNAME": "Mount Calvary Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.516639, 40.905877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12286 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435145", "POINTID": "1102653981021", "FULLNAME": "Goblesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.510250, 40.990044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445498", "POINTID": "1102654001897", "FULLNAME": "Washington Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.509419, 41.048379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046073641", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.507850, 41.158891 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081381789", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.507163, 41.170411 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058042395", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.513831, 41.165294 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045817405", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.511138, 41.163111 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046680505", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.506396, 41.163057 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081381789", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.507163, 41.170411 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12243 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450615", "POINTID": "1102654022148", "FULLNAME": "Wolflake Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.509700, 41.346158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141176593", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.513072, 41.396747 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443231", "POINTID": "1102653998065", "FULLNAME": "Seyberts", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.513305, 41.700326 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12571 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292051", "FULLNAME": "Holloway Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.504553, 38.587764 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12552 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443135", "POINTID": "1102654019410", "FULLNAME": "Scotland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.502737, 38.752835 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431176", "POINTID": "1102654007769", "FULLNAME": "Bland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.497738, 38.872001 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112799604", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.496241, 38.874348 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442956", "POINTID": "1102653997562", "FULLNAME": "San Jacinto", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.497183, 38.956445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439650", "POINTID": "1102654016466", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.501638, 39.282551 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046037931", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.506077, 39.330696 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446839", "POINTID": "1102654018327", "FULLNAME": "Reddick Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.497191, 39.757268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436069", "POINTID": "1102654013421", "FULLNAME": "Hess Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.499414, 39.967268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439192", "POINTID": "1102654016089", "FULLNAME": "Miller Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.498580, 40.056711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440832", "POINTID": "1102654017605", "FULLNAME": "Painter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.501359, 40.069767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440832", "POINTID": "1102654017605", "FULLNAME": "Painter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.501359, 40.069767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433188", "POINTID": "1102653974592", "FULLNAME": "Cross Roads", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.499693, 40.091710 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12383 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104469651074", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.501024, 40.180925 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046698401", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.505937, 40.187818 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104745528301", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.498156, 40.204079 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104745528302", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.498280, 40.203284 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730234727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.504274, 40.210681 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046698567", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.497118, 40.210368 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104745528301", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.498156, 40.204079 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046698566", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.495546, 40.209626 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12367 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434988", "POINTID": "1102653980381", "FULLNAME": "Gaston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.500525, 40.313931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12358 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438731", "POINTID": "1102653989702", "FULLNAME": "Matthews", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.499452, 40.388675 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066256120", "FULLNAME": "Taylor Univ", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.496957, 40.456179 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430325", "POINTID": "1102654006802", "FULLNAME": "Atkinson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.501635, 40.500594 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12341 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430235", "POINTID": "1102653965420", "FULLNAME": "Arcana", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.503303, 40.538652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12339 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434842", "POINTID": "1102653980033", "FULLNAME": "Friendly Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.503580, 40.553373 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12332 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438698", "POINTID": "1102654015545", "FULLNAME": "Masonic Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.503580, 40.608931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12331 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445203", "POINTID": "1102654001343", "FULLNAME": "Van Buren", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.504690, 40.617265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12302 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504097192", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.501217, 40.863284 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504097175", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.500165, 40.863292 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013780672942", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.495487, 40.861550 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064547724", "FULLNAME": "County Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.500696, 40.869102 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12300 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064513604", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.506613, 40.879678 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12299 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064514727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.505438, 40.880988 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436634", "POINTID": "1102653984621", "FULLNAME": "Huntington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.497472, 40.883099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12298 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072665384", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.501195, 40.894635 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104468942266", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.500798, 40.893911 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12296 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110740944070", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.503429, 40.909073 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440199", "POINTID": "1102654016936", "FULLNAME": "Nolt Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.496365, 41.126712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445408", "POINTID": "1102654001787", "FULLNAME": "Walnut Cors", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.496365, 41.132823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046680505", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.506396, 41.163057 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058098576", "FULLNAME": "County Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.496576, 41.162978 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444242", "POINTID": "1102654020456", "FULLNAME": "Stough Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.500809, 41.198936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058041499", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.495420, 41.213422 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12252 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813310200", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.505774, 41.270654 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450614", "POINTID": "1102654003216", "FULLNAME": "Wolflake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.495793, 41.335034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444118", "POINTID": "1102654020316", "FULLNAME": "Steinberg Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.500256, 41.530050 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12575 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444990", "POINTID": "1102654021082", "FULLNAME": "Turner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.491625, 38.551171 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440949", "POINTID": "1102653994589", "FULLNAME": "Paynesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.493291, 38.621171 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12566 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446443", "POINTID": "1102654022400", "FULLNAME": "Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.489680, 38.628115 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12564 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446878", "POINTID": "1102653997545", "FULLNAME": "Saluda", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.484957, 38.650616 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12555 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435422", "POINTID": "1102654012861", "FULLNAME": "Greenbriar Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.489125, 38.723392 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440624", "POINTID": "1102654017402", "FULLNAME": "Old Zenas Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.485520, 39.120607 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432980", "POINTID": "1102654010628", "FULLNAME": "Cornell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.489412, 39.154495 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045817053", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.487803, 39.328268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110106440305", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.487942, 39.339579 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431936", "POINTID": "1102653971041", "FULLNAME": "Cadiz", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.486636, 39.951433 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441683", "POINTID": "1102654018206", "FULLNAME": "Quaker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.486360, 39.946433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449671", "POINTID": "1102653984145", "FULLNAME": "Honey Creek", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.485526, 40.033934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046698122", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.489101, 40.165074 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446404", "POINTID": "1102654003503", "FULLNAME": "Yorktown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.494136, 40.173654 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12383 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046698445", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.488632, 40.184990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046698535", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.486408, 40.203817 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046698566", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.495546, 40.209626 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046698563", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.486628, 40.216449 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443387", "POINTID": "1102654019687", "FULLNAME": "Shiloh Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.484413, 40.437263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504144388", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.486824, 40.467160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445158", "POINTID": "1102654001207", "FULLNAME": "Upland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.494412, 40.475597 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066210713", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.486754, 40.476221 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12302 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013780672942", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.495487, 40.861550 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064511629", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.495343, 40.864404 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110740987482", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.485445, 40.864457 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440953", "POINTID": "1102653994595", "FULLNAME": "Peabody", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.489418, 41.085879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472631478", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.490059, 41.130813 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443837", "POINTID": "1102654020045", "FULLNAME": "South Park Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.493865, 41.139490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046680528", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.493559, 41.148319 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046680523", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.486022, 41.146856 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432816", "POINTID": "1102653973658", "FULLNAME": "Columbia City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.488307, 41.157267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046683774", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.488844, 41.167154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081378785", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.487999, 41.174194 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105533786153", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.484456, 41.176601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046683741", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.495284, 41.179132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434547", "POINTID": "1102653979056", "FULLNAME": "Five Points", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.491655, 41.192830 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046683050", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.494967, 41.211187 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058041499", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.495420, 41.213422 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433111", "POINTID": "1102653974309", "FULLNAME": "Cresco", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.491644, 41.235880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450614", "POINTID": "1102654003216", "FULLNAME": "Wolflake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.495793, 41.335034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141174017", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.491478, 41.378036 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296200711", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.485161, 41.459300 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296200711", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.485161, 41.459300 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438365", "POINTID": "1102654015239", "FULLNAME": "Lower Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.489423, 41.514215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452013", "POINTID": "1102654007593", "FULLNAME": "Beulah Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.484979, 41.553937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12557 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047924", "FULLNAME": "Hanover Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -85.478311, 38.710247 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112809732", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.481170, 38.712022 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112809615", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.477619, 38.713290 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435696", "POINTID": "1102653982345", "FULLNAME": "Hanover", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.473566, 38.714225 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12552 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112805102", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.483168, 38.746109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443716", "POINTID": "1102653998681", "FULLNAME": "Smyrna", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.480792, 38.782002 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430889", "POINTID": "1102654007443", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.476350, 38.978388 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446431", "POINTID": "1102654003642", "FULLNAME": "Zenas", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.474966, 39.120052 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444577", "POINTID": "1102654000319", "FULLNAME": "Tarkeo Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.483857, 39.262827 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110106443143", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.477750, 39.263936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045817258", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.476972, 39.324735 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443836", "POINTID": "1102654020037", "FULLNAME": "South Park Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.481352, 39.331482 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442691", "POINTID": "1102654019070", "FULLNAME": "Saint Marys Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.475682, 39.330136 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449663", "POINTID": "1102653981695", "FULLNAME": "Greensburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.483589, 39.337318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045816900", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.480489, 39.345066 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110106608361", "FULLNAME": "Decatur Co Memorial Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.478622, 39.343960 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110106443490", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.477302, 39.355911 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443005", "POINTID": "1102653997613", "FULLNAME": "Sandusky", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.478024, 39.419492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444450", "POINTID": "1102654020634", "FULLNAME": "Swails Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.479968, 39.428660 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440780", "POINTID": "1102654017550", "FULLNAME": "Overleese Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.479689, 39.476991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433761", "POINTID": "1102654011438", "FULLNAME": "Duke Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.479413, 39.554213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432852", "POINTID": "1102654010401", "FULLNAME": "Concord Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.484160, 39.633099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440496", "POINTID": "1102653993781", "FULLNAME": "Occident", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.478303, 39.691156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444211", "POINTID": "1102653999613", "FULLNAME": "Stone Quarry Mills", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.482192, 39.845878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443302", "POINTID": "1102654019533", "FULLNAME": "Sharp Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.479413, 40.070878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443303", "POINTID": "1102654019534", "FULLNAME": "Sharp Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.481913, 40.084210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445793", "POINTID": "1102654002405", "FULLNAME": "West Muncie", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.481358, 40.170874 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12383 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046698443", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.484026, 40.184617 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729804669", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.483672, 40.190504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046698534", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.483549, 40.203258 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046700317", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.475789, 40.197269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046699442", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.476758, 40.211714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046699445", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.476707, 40.214118 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12377 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440361", "POINTID": "1102654017025", "FULLNAME": "Nottingham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.476913, 40.237542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12376 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11051655406", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.477822, 40.238025 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440361", "POINTID": "1102654017025", "FULLNAME": "Nottingham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.476913, 40.237542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443387", "POINTID": "1102654019687", "FULLNAME": "Shiloh Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.484413, 40.437263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12336 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433681", "POINTID": "1102653976192", "FULLNAME": "Doyle Ferguson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.478858, 40.578653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434416", "POINTID": "1102654011863", "FULLNAME": "Farrville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.480247, 40.581709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433679", "POINTID": "1102654011417", "FULLNAME": "Doyle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.481081, 40.593654 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292315", "FULLNAME": "Bowlin Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.482304, 40.836698 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12303 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064547727", "FULLNAME": "County Infirmary", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.479555, 40.850402 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046680527", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.482878, 41.145814 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045817625", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.478316, 41.161490 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045817656", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.473665, 41.158172 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058039689", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.480212, 41.167392 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105533786153", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.484456, 41.176601 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045817512", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.479507, 41.171788 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046073682", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.475811, 41.175077 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046684017", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.480328, 41.213096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046683029", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.480140, 41.235075 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046683956", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.480371, 41.230869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058041583", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.474810, 41.244474 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452301", "POINTID": "1102653957060", "FULLNAME": "Crooked Lake Golf Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.483586, 41.257545 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12253 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141303357", "FULLNAME": "Indiana Univ Biological Sta", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.478581, 41.268366 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445568", "POINTID": "1102654001995", "FULLNAME": "Wawaka", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.482200, 41.456992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433009", "POINTID": "1102653974020", "FULLNAME": "Cosperville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.474145, 41.480881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452012", "POINTID": "1102654010009", "FULLNAME": "Clearspring Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.480813, 41.531716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439194", "POINTID": "1102654016093", "FULLNAME": "Miller Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.482202, 41.588939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8603, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430903", "POINTID": "1102654007503", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.483034, 41.670327 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440759", "POINTID": "1102653994291", "FULLNAME": "Otto", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.466900, 38.570895 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440535", "POINTID": "1102654017167", "FULLNAME": "Old Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.467735, 38.686448 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12558 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112791792", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.472721, 38.701378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12557 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435697", "POINTID": "1102654013116", "FULLNAME": "Hanover Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.464401, 38.709225 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435696", "POINTID": "1102653982345", "FULLNAME": "Hanover", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.473566, 38.714225 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430218", "POINTID": "1102653965304", "FULLNAME": "Antioch Grange", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.470234, 38.737281 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292313", "FULLNAME": "Madison Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.464693, 38.759915 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12544 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439122", "POINTID": "1102653990552", "FULLNAME": "Midway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.462738, 38.816445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439115", "POINTID": "1102653990505", "FULLNAME": "Middlefork", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.472182, 38.853946 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440742", "POINTID": "1102654017535", "FULLNAME": "Otter Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.472742, 39.072276 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430202", "POINTID": "1102654006673", "FULLNAME": "Antioch Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.464969, 39.267273 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045872888", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.468714, 39.323251 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045872890", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.468083, 39.322648 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504070590", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.467552, 39.332283 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045760328", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.467501, 39.327040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110106608370", "FULLNAME": "Greensburg Community High School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.468223, 39.340695 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438913", "POINTID": "1102654015820", "FULLNAME": "McLaughlin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.462746, 39.417549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446089", "POINTID": "1102654002954", "FULLNAME": "Williamstown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.469135, 39.452828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439254", "POINTID": "1102653990879", "FULLNAME": "Milroy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.469690, 39.496992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444687", "POINTID": "1102654020867", "FULLNAME": "Thomas Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.463022, 39.504769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437222", "POINTID": "1102654014412", "FULLNAME": "Kelly Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.464411, 39.570602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440515", "POINTID": "1102653993826", "FULLNAME": "Ogden", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.468856, 39.799212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435452", "POINTID": "1102653981683", "FULLNAME": "Greensboro", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.466080, 39.875044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292344", "FULLNAME": "Ferrell Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.469526, 39.969476 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444408", "POINTID": "1102654020598", "FULLNAME": "Sunderland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.471079, 40.120322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046700333", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.463744, 40.193893 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046700335", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.462553, 40.191635 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438897", "POINTID": "1102654015793", "FULLNAME": "McKinley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.470524, 40.198931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445897", "POINTID": "1102654021806", "FULLNAME": "Wheeling Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.468858, 40.363374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12361 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445897", "POINTID": "1102654021806", "FULLNAME": "Wheeling Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.468858, 40.363374 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445895", "POINTID": "1102654002716", "FULLNAME": "Wheeling", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.464135, 40.363652 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12360 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440637", "POINTID": "1102654017437", "FULLNAME": "Olive Branch Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.472745, 40.378653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434415", "POINTID": "1102653978605", "FULLNAME": "Farrville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.466356, 40.581153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12329 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433000", "POINTID": "1102654010686", "FULLNAME": "Cory Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.473303, 40.632265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12327 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439253", "POINTID": "1102653990865", "FULLNAME": "Milo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.468303, 40.653931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431524", "POINTID": "1102653969520", "FULLNAME": "Briggs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.470251, 41.085602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046680406", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.472394, 41.151166 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045817623", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.467434, 41.153002 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058043052", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.467375, 41.148313 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045817656", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.473665, 41.158172 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058042764", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.473263, 41.166520 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046680489", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.473121, 41.163840 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058039534", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.466863, 41.164969 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046680403", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.466163, 41.176954 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046683038", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.471474, 41.239644 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292636", "FULLNAME": "Stangland Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.463701, 41.315591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440477", "POINTID": "1102654017117", "FULLNAME": "Oaklawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.465613, 41.728907 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452095", "POINTID": "1102654001129", "FULLNAME": "Twin Lakes", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.462480, 41.733385 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12568 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446744", "POINTID": "1102653960301", "FULLNAME": "Marble Hill Nuclear Power Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.458331, 38.612499 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12557 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452049", "POINTID": "1102653982362", "FULLNAME": "Hanover Beach", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.453280, 38.706753 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047923", "FULLNAME": "Hanover Colg", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.460410, 38.713524 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112805875", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.451467, 38.716067 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112817176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.452838, 38.731492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446203", "POINTID": "1102654003139", "FULLNAME": "Wirt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.453570, 38.809502 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12544 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439122", "POINTID": "1102653990552", "FULLNAME": "Midway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.462738, 38.816445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452191", "POINTID": "1102653980219", "FULLNAME": "Galloways Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.462180, 38.840332 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442507", "POINTID": "1102654018872", "FULLNAME": "Saint Bridget Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.453575, 39.059221 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439964", "POINTID": "1102653992143", "FULLNAME": "Nebraska", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.459428, 39.063684 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110106442887", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.459197, 39.335812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438913", "POINTID": "1102654015820", "FULLNAME": "McLaughlin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.462746, 39.417549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431896", "POINTID": "1102654009012", "FULLNAME": "Butcher Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.457188, 39.423939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437685", "POINTID": "1102654014874", "FULLNAME": "Layton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.459688, 39.455325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438723", "POINTID": "1102654015574", "FULLNAME": "Matlock Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.458857, 39.583658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015482158585", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.462182, 39.618030 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436122", "POINTID": "1102654013478", "FULLNAME": "Hickside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.462746, 39.873934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452069", "POINTID": "1102653991693", "FULLNAME": "Mt Lawn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.461356, 39.911711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046700335", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.462553, 40.191635 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046700336", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.454316, 40.190592 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046748131", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.453683, 40.215298 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046697184", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.451572, 40.223146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12367 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444182", "POINTID": "1102653999550", "FULLNAME": "Stockport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.460522, 40.320874 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452389", "POINTID": "1102653962105", "FULLNAME": "Purdue University Memorial Farm", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.455523, 40.471431 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12341 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436909", "POINTID": "1102653985219", "FULLNAME": "Jadden", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.457467, 40.536153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438489", "POINTID": "1102653989067", "FULLNAME": "Majenica", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.453302, 40.770044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441869", "POINTID": "1102654018360", "FULLNAME": "Rees Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.455246, 40.778100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12308 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438302", "POINTID": "1102654015190", "FULLNAME": "Loon Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.456638, 40.813377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12303 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292327", "FULLNAME": "Huntington Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.457051, 40.852916 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437645", "POINTID": "1102653987292", "FULLNAME": "Laud", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.452135, 41.049439 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440408", "POINTID": "1102654017055", "FULLNAME": "Oak Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.453028, 41.124213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058041815", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.460302, 41.161724 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058042039", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.457749, 41.156326 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058039808", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.451609, 41.157316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058041812", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.455252, 41.162352 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292549", "FULLNAME": "Wigent Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.456754, 41.208644 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446341", "POINTID": "1102654022264", "FULLNAME": "Wright Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.452754, 41.424493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443614", "POINTID": "1102654019896", "FULLNAME": "Sloan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.462201, 41.565327 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440711", "POINTID": "1102654017518", "FULLNAME": "Osborn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.458588, 41.597828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8605, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452095", "POINTID": "1102654001129", "FULLNAME": "Twin Lakes", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.462480, 41.733385 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12570 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438596", "POINTID": "1102653989351", "FULLNAME": "Marble Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.450512, 38.592560 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12566 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292301", "FULLNAME": "Lee Bottom Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.442771, 38.631183 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12563 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452181", "POINTID": "1102653961128", "FULLNAME": "New London", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.441068, 38.652283 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112805875", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.451467, 38.716067 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436129", "POINTID": "1102654013508", "FULLNAME": "Higbie Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.440513, 38.769780 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262964840", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.450051, 38.808112 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12544 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292337", "FULLNAME": "Giltner Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.445070, 38.815323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452190", "POINTID": "1102653956135", "FULLNAME": "Brights Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.451349, 38.825891 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449042", "POINTID": "1102653985158", "FULLNAME": "Jackson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.441352, 39.065054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117027563", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.447723, 39.499318 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442410", "POINTID": "1102653997229", "FULLNAME": "Rushville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.446355, 39.609214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117111380", "FULLNAME": "Rush Memorial Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.443327, 39.622751 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292411", "FULLNAME": "Rush Memorial Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.443300, 39.622545 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117111380", "FULLNAME": "Rush Memorial Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.443327, 39.622751 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292411", "FULLNAME": "Rush Memorial Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.443300, 39.622545 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433290", "POINTID": "1102654011082", "FULLNAME": "Dale Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.449144, 39.643908 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444380", "POINTID": "1102653999795", "FULLNAME": "Sulphur Springs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.442747, 40.004768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430894", "POINTID": "1102654007456", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.443579, 40.032268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441606", "POINTID": "1102653995712", "FULLNAME": "Progress", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.442468, 40.120322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046700337", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.449589, 40.192403 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747691", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.444142, 40.195112 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104483751869", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.448466, 40.202088 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747690", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.444928, 40.196087 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747692", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.447996, 40.195622 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104483752511", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.449858, 40.205607 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046697687", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.450579, 40.216054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046697184", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.451572, 40.223146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12377 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046696543", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.444268, 40.236584 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12375 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475874751", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.441224, 40.250000 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12360 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434072", "POINTID": "1102654011594", "FULLNAME": "Elizabethtown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.451078, 40.376708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437746", "POINTID": "1102654014931", "FULLNAME": "Leffler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.445523, 40.499762 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444582", "POINTID": "1102654020793", "FULLNAME": "Taylor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.451357, 40.697264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12321 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444582", "POINTID": "1102654020793", "FULLNAME": "Taylor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.451357, 40.697264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445819", "POINTID": "1102654021743", "FULLNAME": "West Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.443858, 40.741711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12299 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431401", "POINTID": "1102653969040", "FULLNAME": "Bowerstown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.442471, 40.888656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12298 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431401", "POINTID": "1102653969040", "FULLNAME": "Bowerstown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.442471, 40.888656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12286 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445065", "POINTID": "1102654021210", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.445529, 40.989489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058039808", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.451609, 41.157316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058043008", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.446843, 41.178995 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12255 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058041859", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.444619, 41.251677 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444874", "POINTID": "1102654000962", "FULLNAME": "Tri-Lakes", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.441918, 41.245880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437128", "POINTID": "1102654014314", "FULLNAME": "Jordon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.443310, 41.597549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436129", "POINTID": "1102654013508", "FULLNAME": "Higbie Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.440513, 38.769780 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446204", "POINTID": "1102654003146", "FULLNAME": "Wirt Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.439681, 38.811446 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439237", "POINTID": "1102653990796", "FULLNAME": "Millhousen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.432466, 39.210607 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432531", "POINTID": "1102653972819", "FULLNAME": "Circleville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.439132, 39.600323 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433910", "POINTID": "1102654011499", "FULLNAME": "East Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.432743, 39.605324 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117024008", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.433343, 39.599218 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117023474", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.437021, 39.620363 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431974", "POINTID": "1102654009160", "FULLNAME": "Calvary Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.431356, 39.616712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443229", "POINTID": "1102653998055", "FULLNAME": "Sexton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.434690, 39.700045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438765", "POINTID": "1102653989856", "FULLNAME": "Mays", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.429966, 39.743655 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433801", "POINTID": "1102653976528", "FULLNAME": "Dunreith", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.438579, 39.803377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443945", "POINTID": "1102653999142", "FULLNAME": "Spiceland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.438855, 39.838379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292229", "FULLNAME": "Carroll's Airpark", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.430664, 40.126375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12387 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444810", "POINTID": "1102654020981", "FULLNAME": "Tomlinson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.433579, 40.145876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12383 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434124", "POINTID": "1102654011635", "FULLNAME": "Elm Ridge Memorial Pk", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.440245, 40.181986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046747694", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.437576, 40.191793 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104483751814", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.439048, 40.202127 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504094248", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.435004, 40.203399 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104483751831", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.437259, 40.205753 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104483751805", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.435084, 40.205454 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046697686", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.435237, 40.213623 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430166", "POINTID": "1102653965035", "FULLNAME": "Andersonville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.431080, 40.218653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12377 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046696821", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.436750, 40.236485 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046696908", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.434768, 40.233987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12375 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046633045", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.439698, 40.251019 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430191", "POINTID": "1102653965190", "FULLNAME": "Anthony", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.436079, 40.277819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441895", "POINTID": "1102653996309", "FULLNAME": "Renner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.431359, 40.472263 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12338 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430467", "POINTID": "1102654006957", "FULLNAME": "Balsley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.431914, 40.563375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262901251", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.430168, 40.690297 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441712", "POINTID": "1102653995929", "FULLNAME": "Raber", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.432751, 41.085879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058043331", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.430795, 41.142546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12251 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292647", "FULLNAME": "Shaffer Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.437310, 41.281979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450563", "POINTID": "1102654015956", "FULLNAME": "Merriam Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.440317, 41.293483 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439026", "POINTID": "1102653990332", "FULLNAME": "Merriam", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.434419, 41.287270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450595", "POINTID": "1102654020239", "FULLNAME": "Stanford Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.432474, 41.304769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450522", "POINTID": "1102653970828", "FULLNAME": "Burr Oak", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.433032, 41.323102 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450580", "POINTID": "1102653995425", "FULLNAME": "Port Mitchell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.438863, 41.361992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102202339335", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.429771, 41.390831 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141188989", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.438091, 41.393932 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442294", "POINTID": "1102654018683", "FULLNAME": "Rose Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.431546, 41.396160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089432571", "FULLNAME": "Eddy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.439097, 41.537515 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451930", "POINTID": "1102654010722", "FULLNAME": "County Farm Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.437477, 41.640327 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451935", "POINTID": "1102654003251", "FULLNAME": "Woodland Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.431922, 41.645328 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451937", "POINTID": "1102653959759", "FULLNAME": "Lagrange Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.435256, 41.651994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444073", "POINTID": "1102653999386", "FULLNAME": "Star Mill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.437479, 41.745329 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12577 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430971", "POINTID": "1102653967928", "FULLNAME": "Bethlehem", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.420512, 38.539229 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12573 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452065", "POINTID": "1102653990635", "FULLNAME": "Miles Pt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.423011, 38.568672 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112825702", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.418819, 38.766597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019665293587", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.425117, 38.776703 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112824962", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.423618, 38.778380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262944049", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.427821, 38.785995 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12493 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435632", "POINTID": "1102653958563", "FULLNAME": "Hamburg Community Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.419133, 39.251439 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437385", "POINTID": "1102653986343", "FULLNAME": "Knarr Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.428577, 39.304216 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430970", "POINTID": "1102654007543", "FULLNAME": "Bethesdale Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.423854, 39.460325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446840", "POINTID": "1102654019685", "FULLNAME": "Shiloh Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.428856, 39.772545 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292268", "FULLNAME": "Roberts Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.427888, 40.001195 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12387 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046989871", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.423215, 40.148668 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046989870", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.418666, 40.146140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439119", "POINTID": "1102653990534", "FULLNAME": "Middletown Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.424691, 40.162266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12376 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104482601318", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.420825, 40.241209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729423704", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.418876, 40.259416 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12373 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046632949", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.423561, 40.268000 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046632950", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.420386, 40.263465 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12348 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439242", "POINTID": "1102654016096", "FULLNAME": "Mills Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.426911, 40.479486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292554", "FULLNAME": "Lee Farms Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.423164, 40.594153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12332 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433553", "POINTID": "1102653975834", "FULLNAME": "Dillman", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.428856, 40.610320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12324 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064510268", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.421576, 40.676470 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12323 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262901258", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.429406, 40.688833 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445479", "POINTID": "1102654001846", "FULLNAME": "Warren", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.427190, 40.682821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262901258", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.429406, 40.688833 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046682614", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.420868, 41.077713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292556", "FULLNAME": "Gordon Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.423695, 41.120311 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292543", "FULLNAME": "Terry's Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.420364, 41.169615 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102202339335", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.429771, 41.390831 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102202339422", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.428730, 41.390803 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102202752365", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.423771, 41.389435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437551", "POINTID": "1102654014741", "FULLNAME": "Lakeside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.422478, 41.540327 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292613", "FULLNAME": "Lagrange Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.426383, 41.645077 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451934", "POINTID": "1102653993531", "FULLNAME": "Northwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.420533, 41.654493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436547", "POINTID": "1102653984373", "FULLNAME": "Howe", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.420533, 41.721440 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451933", "POINTID": "1102654018601", "FULLNAME": "Riverside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.418591, 41.715049 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110337810415", "FULLNAME": "Howe Military Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.425769, 41.725916 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8608, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446912", "POINTID": "1102653959010", "FULLNAME": "Howe-Lagrange Tollgate", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.426925, 41.755883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452293", "POINTID": "1102653956806", "FULLNAME": "Clifty Creek Power Plant", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.414957, 38.737281 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12552 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112801053", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.409836, 38.746427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112825702", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.418819, 38.766597 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019665293637", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.418240, 38.769129 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112825805", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.413425, 38.766710 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449852", "POINTID": "1102653960132", "FULLNAME": "Lock Spring", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.412186, 39.158108 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438817", "POINTID": "1102653989958", "FULLNAME": "McCoy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.414412, 39.323106 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444006", "POINTID": "1102654020168", "FULLNAME": "Springer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.412189, 39.337828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433034", "POINTID": "1102654010721", "FULLNAME": "County Farm Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.416078, 39.611712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445867", "POINTID": "1102654002642", "FULLNAME": "Westwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.416912, 39.919212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292288", "FULLNAME": "The Last Resort Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.409276, 40.036932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12387 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046989870", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.418666, 40.146140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292193", "FULLNAME": "Ball Memorial Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.416437, 40.197368 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729423704", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.418876, 40.259416 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12373 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046632953", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.413656, 40.268807 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046632952", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.412331, 40.268694 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062972010", "FULLNAME": "County Infirmary", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.413042, 40.408588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441837", "POINTID": "1102654018341", "FULLNAME": "Redmen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.413594, 40.671049 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12323 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446291", "POINTID": "1102654022194", "FULLNAME": "Woodlawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.413023, 40.682265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12307 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449624", "POINTID": "1102653969986", "FULLNAME": "Browns Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.411636, 40.815043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444074", "POINTID": "1102654020256", "FULLNAME": "Star of Hope Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.412470, 40.827267 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430502", "POINTID": "1102654007034", "FULLNAME": "Barnes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.411081, 40.824490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12303 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443528", "POINTID": "1102653998488", "FULLNAME": "Simpson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.413026, 40.855046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12297 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438601", "POINTID": "1102653989378", "FULLNAME": "Mardenis", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.413581, 40.904210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12293 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434747", "POINTID": "1102654012159", "FULLNAME": "France Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.416915, 40.937268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046682632", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.417961, 41.071989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081381515", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.410587, 41.139138 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141172323", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.418428, 41.403759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141179880", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.416848, 41.492697 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141193017", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.415928, 41.505763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435469", "POINTID": "1102654012914", "FULLNAME": "Greenwood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.417199, 41.630328 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089432516", "FULLNAME": "Lagrange", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.416346, 41.641740 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110337559537", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.409528, 41.648286 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451931", "POINTID": "1102654015685", "FULLNAME": "McCoy Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.417199, 41.656161 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110337810282", "FULLNAME": "Lakeland High School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.410638, 41.653686 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110337559537", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.409528, 41.648286 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436253", "POINTID": "1102654013656", "FULLNAME": "Hoagland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.407755, 41.677828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292631", "FULLNAME": "Reid-Eash Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.418146, 41.702258 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451933", "POINTID": "1102654018601", "FULLNAME": "Riverside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.418591, 41.715049 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452356", "POINTID": "1102653960152", "FULLNAME": "Madison Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.407457, 38.740059 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047930", "FULLNAME": "Madison State Hospital", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.399859, 38.755809 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047926", "FULLNAME": "Johnson Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -85.399513, 38.764531 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440275", "POINTID": "1102653993337", "FULLNAME": "North Madison", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.396624, 38.767837 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431705", "POINTID": "1102654008721", "FULLNAME": "Bryner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.405513, 38.771448 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437984", "POINTID": "1102654015026", "FULLNAME": "Little Arlington Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.400240, 39.069498 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443589", "POINTID": "1102653998565", "FULLNAME": "Slabtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.401385, 39.278504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12479 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110106442510", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.405368, 39.372080 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441310", "POINTID": "1102654017936", "FULLNAME": "Pleasant Run Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.399687, 39.542546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110541931", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.405714, 39.905601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446294", "POINTID": "1102654022188", "FULLNAME": "Woodlawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.398021, 40.048378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430723", "POINTID": "1102654007293", "FULLNAME": "Beech Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.403300, 40.189209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452373", "POINTID": "1102653961351", "FULLNAME": "Northwest Plaza Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.406079, 40.217819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12377 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475872514", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.399400, 40.229593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12363 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439776", "POINTID": "1102654016578", "FULLNAME": "Mount Zion Church Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.407189, 40.348930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443376", "POINTID": "1102654019647", "FULLNAME": "Shields Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.402747, 40.482542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064513228", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.397289, 40.835549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12298 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434434", "POINTID": "1102654011902", "FULLNAME": "Feighner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.398582, 40.889213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431529", "POINTID": "1102653969589", "FULLNAME": "Brimfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.398032, 41.454216 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141179682", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.398104, 41.482874 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452027", "POINTID": "1102653955656", "FULLNAME": "Arca Conference Center-Catholic Retreat", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.400808, 41.534493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436253", "POINTID": "1102654013656", "FULLNAME": "Hoagland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.407755, 41.677828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8610, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451936", "POINTID": "1102653996626", "FULLNAME": "River Oaks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.404145, 41.711718 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444003", "POINTID": "1102654020160", "FULLNAME": "Springdale Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.388210, 38.741850 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12552 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019665293255", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.392676, 38.752571 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112814794", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.389814, 38.748624 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442750", "POINTID": "1102654019122", "FULLNAME": "Saint Patricks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.389401, 38.758948 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430590", "POINTID": "1102654007132", "FULLNAME": "Baxter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.386346, 38.756725 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440275", "POINTID": "1102653993337", "FULLNAME": "North Madison", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.396624, 38.767837 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112825199", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.395379, 38.773506 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485564444", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.393539, 38.788398 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485564448", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.391206, 38.788435 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485564445", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.392249, 38.787591 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485564444", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.393539, 38.788398 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485564448", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.391206, 38.788435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452197", "POINTID": "1102653997347", "FULLNAME": "Saint Magdalen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.391348, 38.957834 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436345", "POINTID": "1102653984068", "FULLNAME": "Holton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.387185, 39.075054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440571", "POINTID": "1102654017260", "FULLNAME": "Old Hopewell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.386351, 39.096442 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439084", "POINTID": "1102653990471", "FULLNAME": "Middle Branch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.385799, 39.307827 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437339", "POINTID": "1102653986135", "FULLNAME": "Kingston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.388298, 39.378937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441957", "POINTID": "1102653996396", "FULLNAME": "Richland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.394966, 39.497548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434099", "POINTID": "1102654011624", "FULLNAME": "Elliott Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.386909, 39.906712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442573", "POINTID": "1102654018977", "FULLNAME": "Saint Johns Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.389411, 39.938378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434424", "POINTID": "1102653978648", "FULLNAME": "Fayne Siding", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.388301, 39.975879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103681259283", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.387877, 40.008612 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440483", "POINTID": "1102653993731", "FULLNAME": "Oakville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.390522, 40.079210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433055", "POINTID": "1102653974164", "FULLNAME": "Cowan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.388577, 40.105877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439878", "POINTID": "1102653991953", "FULLNAME": "Muncie", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.386356, 40.193375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433686", "POINTID": "1102653976211", "FULLNAME": "Drew", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.386912, 40.218931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12376 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292276", "FULLNAME": "Delaware County Regional Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.395747, 40.242470 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046633074", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.388567, 40.257445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062972034", "FULLNAME": "Blackford Golf Course", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -85.388116, 40.448707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444192", "POINTID": "1102654020426", "FULLNAME": "Stoll Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.387191, 40.503654 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12342 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432312", "POINTID": "1102654009595", "FULLNAME": "Center Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.389411, 40.530320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12339 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442260", "POINTID": "1102653996903", "FULLNAME": "Roll", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.390246, 40.552265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12330 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438924", "POINTID": "1102653990043", "FULLNAME": "McNatts", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.391080, 40.624486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441372", "POINTID": "1102653995285", "FULLNAME": "Plum Tree", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.392466, 40.742268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446364", "POINTID": "1102654022309", "FULLNAME": "Yankeetown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.388856, 40.756433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12285 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292280", "FULLNAME": "Kilsoquah Farm Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.387609, 40.997207 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432728", "POINTID": "1102653973392", "FULLNAME": "Coesse", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.395251, 41.127823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432730", "POINTID": "1102653973416", "FULLNAME": "Coesse Cors", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.395806, 41.140047 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434975", "POINTID": "1102654012399", "FULLNAME": "Garrison Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.396361, 41.180881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432790", "POINTID": "1102653973605", "FULLNAME": "Collins", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.386649, 41.197551 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440677", "POINTID": "1102654017473", "FULLNAME": "Orange Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.392198, 41.470881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141179708", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.396176, 41.483003 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445618", "POINTID": "1102654002142", "FULLNAME": "Webers Landing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.394143, 41.538938 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446221", "POINTID": "1102654003158", "FULLNAME": "Witmer Manor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.386364, 41.537549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445187", "POINTID": "1102654001277", "FULLNAME": "Valentine", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.386920, 41.590327 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451932", "POINTID": "1102654017467", "FULLNAME": "Ontario Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.388033, 41.700049 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438468", "POINTID": "1102653988975", "FULLNAME": "Madison", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.379922, 38.735754 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047955", "FULLNAME": "Kings Daughters Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.381885, 38.739321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12552 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442630", "POINTID": "1102654019020", "FULLNAME": "Saint Josephs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.377454, 38.752004 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434306", "POINTID": "1102654011791", "FULLNAME": "Fairmount Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.384401, 38.757560 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047953", "FULLNAME": "Sunrise Falls Golf Course", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -85.385490, 38.765923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442052", "POINTID": "1102653996550", "FULLNAME": "Ringwald", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.382735, 38.783670 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12544 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449858", "POINTID": "1102653962867", "FULLNAME": "Stony Pt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.382178, 38.820336 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430779", "POINTID": "1102653967487", "FULLNAME": "Belleview", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.378012, 38.855891 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047927", "FULLNAME": "Liberty Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -85.376360, 38.865859 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443715", "POINTID": "1102653998683", "FULLNAME": "Smyrna", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.377189, 39.263940 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439084", "POINTID": "1102653990471", "FULLNAME": "Middle Branch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.385799, 39.307827 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110106432140", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.380083, 39.452072 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441959", "POINTID": "1102654018489", "FULLNAME": "Richland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.377465, 39.498103 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110535968", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.379393, 39.899728 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110815258", "FULLNAME": "Baker Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -85.376955, 39.908596 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110550828", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.376738, 39.901197 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110559520", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.384213, 39.912894 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443833", "POINTID": "1102654020032", "FULLNAME": "South Mound Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.379034, 39.920364 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434626", "POINTID": "1102653979278", "FULLNAME": "Foley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.377744, 39.965323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110815260", "FULLNAME": "Shively Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -85.380461, 39.992826 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439701", "POINTID": "1102653991836", "FULLNAME": "Mt Summit", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.384688, 40.004490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430722", "POINTID": "1102654007291", "FULLNAME": "Beech Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.381078, 40.069488 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449401", "POINTID": "1102653962746", "FULLNAME": "Southway Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.383857, 40.161155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449402", "POINTID": "1102653961005", "FULLNAME": "Muncie Mall", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.375244, 40.220875 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449402", "POINTID": "1102653961005", "FULLNAME": "Muncie Mall", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.375244, 40.220875 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12365 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445069", "POINTID": "1102654021193", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.375247, 40.336709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062942446", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.383690, 40.440152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475847418", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.383481, 40.449643 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12292 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438478", "POINTID": "1102653989052", "FULLNAME": "Mahon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.380525, 40.938656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12291 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064515345", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.381593, 40.949353 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12290 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103681275080", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.381622, 40.957361 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12289 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103681268972", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.382730, 40.968833 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102586598409", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.380128, 40.971399 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12288 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102586597445", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.380169, 40.973633 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292564", "FULLNAME": "Homestead Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.384806, 41.075311 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081381914", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.382129, 41.120234 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141303349", "FULLNAME": "Sycamore Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -85.375823, 41.499052 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446304", "POINTID": "1102654022197", "FULLNAME": "Woodruff Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.375531, 41.538938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8612, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440663", "POINTID": "1102653994026", "FULLNAME": "Ontario", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.382478, 41.702272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262957639", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.374260, 38.734009 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12542 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435967", "POINTID": "1102654013331", "FULLNAME": "Hebron Church Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.369123, 38.839781 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047914", "FULLNAME": "Hebron Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -85.368879, 38.839680 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443662", "POINTID": "1102654019933", "FULLNAME": "Smith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.369123, 38.841724 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047914", "FULLNAME": "Hebron Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -85.368879, 38.839680 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435306", "POINTID": "1102654012727", "FULLNAME": "Grandview Memorial Garden", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.373291, 38.873390 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449625", "POINTID": "1102653970216", "FULLNAME": "Bryantsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.374402, 38.885891 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12531 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435638", "POINTID": "1102654013078", "FULLNAME": "Hamilton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.363568, 38.930055 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452196", "POINTID": "1102653992386", "FULLNAME": "New Carrollton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.365237, 38.944778 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452348", "POINTID": "1102653959519", "FULLNAME": "Jefferson Proving Ground", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.369960, 38.968944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443359", "POINTID": "1102654019620", "FULLNAME": "Sheppard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.370794, 39.012832 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12513 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292430", "FULLNAME": "Francis Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.369759, 39.086233 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449054", "POINTID": "1102653998654", "FULLNAME": "Smiths Crossing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.364408, 39.316717 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438541", "POINTID": "1102654015406", "FULLNAME": "Maple Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.366355, 39.310050 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438955", "POINTID": "1102653990108", "FULLNAME": "Mechanicsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.366908, 39.337272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441958", "POINTID": "1102654018488", "FULLNAME": "Richland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.368576, 39.496992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436228", "POINTID": "1102654013608", "FULLNAME": "Hinchman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.368021, 39.643379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435089", "POINTID": "1102653980751", "FULLNAME": "Gings", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.370797, 39.670876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441751", "POINTID": "1102653996021", "FULLNAME": "Raleigh", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.363855, 39.743934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433972", "POINTID": "1102654011524", "FULLNAME": "Ebenezer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.364966, 39.845878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110646457", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.374447, 39.901368 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110646542", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.367272, 39.894720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110646457", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.374447, 39.901368 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440031", "POINTID": "1102653992390", "FULLNAME": "New Castle", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.370244, 39.928935 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110606215", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.365395, 39.927109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292278", "FULLNAME": "Henry County Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.364687, 39.943099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438186", "POINTID": "1102654015135", "FULLNAME": "Livezey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.365521, 39.988379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439702", "POINTID": "1102654016518", "FULLNAME": "Mount Summit Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.372358, 40.003864 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438410", "POINTID": "1102653988787", "FULLNAME": "Luray", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.366910, 40.071155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12387 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504089339", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.370306, 40.151780 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729888770", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.373594, 40.156758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433116", "POINTID": "1102653974359", "FULLNAME": "Creston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.374134, 40.211154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439441", "POINTID": "1102653991451", "FULLNAME": "Morningside", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.366355, 40.223931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12373 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442377", "POINTID": "1102653997168", "FULLNAME": "Royerton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.365524, 40.263653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434951", "POINTID": "1102654012383", "FULLNAME": "Gardens of Memory Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.370244, 40.288930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292047", "FULLNAME": "Hickory Hills Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.372181, 40.427224 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435826", "POINTID": "1102653982654", "FULLNAME": "Hartford City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.369968, 40.451154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062941402", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.371269, 40.467954 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12329 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430575", "POINTID": "1102654007118", "FULLNAME": "Batson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.364411, 40.633378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12328 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437087", "POINTID": "1102654014299", "FULLNAME": "Jones Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.373023, 40.639210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12295 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259477177", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.364995, 40.915442 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12291 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442130", "POINTID": "1102653996756", "FULLNAME": "Roanoke Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.364137, 40.951991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12290 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442129", "POINTID": "1102653996747", "FULLNAME": "Roanoke", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.373302, 40.962544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12289 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102586586773", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.373975, 40.970388 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12288 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102586589286", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.373208, 40.973853 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12284 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292535", "FULLNAME": "Gerig's Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.370108, 41.008597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446007", "POINTID": "1102654021965", "FULLNAME": "Wigent Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.364971, 41.153101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015496789661", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.374506, 41.225832 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046680780", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.368903, 41.230470 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109073022797", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.363850, 41.255698 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449754", "POINTID": "1102653981511", "FULLNAME": "Green Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.366082, 41.308360 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292701", "FULLNAME": "Pippenger Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.370108, 41.316374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141303365", "FULLNAME": "Gaff Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -85.374504, 41.492095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141303348", "FULLNAME": "Lakeside Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -85.374847, 41.493961 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141155022", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.370429, 41.494612 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141303365", "FULLNAME": "Gaff Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -85.374504, 41.492095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451999", "POINTID": "1102654018910", "FULLNAME": "Saint Gaspars Catholic Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.374418, 41.506161 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452000", "POINTID": "1102654017008", "FULLNAME": "Northport Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.365532, 41.507549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051960855", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.365111, 41.522877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452001", "POINTID": "1102654022179", "FULLNAME": "Woodland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.370252, 41.530883 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452092", "POINTID": "1102654003195", "FULLNAME": "Wolcottville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.366634, 41.525885 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8613, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292592", "FULLNAME": "Yoder Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.372610, 41.685264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262924880", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.354044, 38.807510 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12531 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435638", "POINTID": "1102654013078", "FULLNAME": "Hamilton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.363568, 38.930055 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452195", "POINTID": "1102653985569", "FULLNAME": "Jolleyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.359403, 38.994220 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440083", "POINTID": "1102653992649", "FULLNAME": "New Marion", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.358848, 39.007555 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439538", "POINTID": "1102654016346", "FULLNAME": "Mount Carmel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.356632, 39.404215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440109", "POINTID": "1102653992873", "FULLNAME": "New Salem", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.358019, 39.542269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434407", "POINTID": "1102653978575", "FULLNAME": "Farmington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.358853, 39.618101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441751", "POINTID": "1102653996021", "FULLNAME": "Raleigh", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.363855, 39.743934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437809", "POINTID": "1102653987832", "FULLNAME": "Lewisville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.352743, 39.806710 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110815261", "FULLNAME": "County Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.363845, 39.942577 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445215", "POINTID": "1102654001374", "FULLNAME": "Van Nuys", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.353853, 39.960046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471577425", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.358027, 40.222526 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12368 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443373", "POINTID": "1102653998275", "FULLNAME": "Shideler", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.359690, 40.306152 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452053", "POINTID": "1102653984272", "FULLNAME": "Hoover Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.361079, 40.454209 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062972009", "FULLNAME": "Hospital", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.363086, 40.456871 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062942463", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.360924, 40.467807 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436954", "POINTID": "1102653985353", "FULLNAME": "Jeff", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.353022, 40.605321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431742", "POINTID": "1102653970283", "FULLNAME": "Buckeye", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.353856, 40.691155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12295 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259477261", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.363539, 40.917015 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446649", "POINTID": "1102653997721", "FULLNAME": "Saturn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.355527, 41.034768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432856", "POINTID": "1102654010418", "FULLNAME": "Concord Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.353279, 41.186157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292526", "FULLNAME": "Green Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.356777, 41.228596 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12255 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058041926", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.356265, 41.250633 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109073022797", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.363850, 41.255698 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12251 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292690", "FULLNAME": "Resler Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.359553, 41.283876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450539", "POINTID": "1102654012828", "FULLNAME": "Grays Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.358030, 41.291159 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141180498", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.361114, 41.333159 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141303360", "FULLNAME": "in Dept of Corrections-Chain O' Lakes Correctional Facility", "MTFCC": "K1237" }, "geometry": { "type": "Point", "coordinates": [ -85.362099, 41.338186 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430440", "POINTID": "1102653966347", "FULLNAME": "Bakertown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.357195, 41.366436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051960801", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.359178, 41.524096 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444668", "POINTID": "1102653954897", "FULLNAME": "The Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.354140, 41.652273 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8614, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451918", "POINTID": "1102653956668", "FULLNAME": "Cedar Lake Golf Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.356922, 41.747272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12552 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112784154", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.348671, 38.750929 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047939", "FULLNAME": "Woodfill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.349219, 38.794577 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440635", "POINTID": "1102654017420", "FULLNAME": "Olive Branch Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.350232, 38.804502 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12544 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047944", "FULLNAME": "St Anthony Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.342003, 38.822056 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12531 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440621", "POINTID": "1102654017387", "FULLNAME": "Old Westfork Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.346070, 38.927556 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440384", "POINTID": "1102654017125", "FULLNAME": "O'Brien Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.351906, 39.074777 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433280", "POINTID": "1102653974953", "FULLNAME": "Dabney", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.346906, 39.090053 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440750", "POINTID": "1102654017540", "FULLNAME": "Otter Village Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.349406, 39.122276 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432573", "POINTID": "1102653972924", "FULLNAME": "Clarksburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.347741, 39.433382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437809", "POINTID": "1102653987832", "FULLNAME": "Lewisville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.352743, 39.806710 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430785", "POINTID": "1102653967568", "FULLNAME": "Belmont", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.349688, 39.921713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110535105", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.350758, 39.931842 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437721", "POINTID": "1102654014913", "FULLNAME": "Lebanon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.352188, 40.026436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438451", "POINTID": "1102654015364", "FULLNAME": "Macedonia Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.348022, 40.091433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434322", "POINTID": "1102654011824", "FULLNAME": "Fairview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.348299, 40.105321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436838", "POINTID": "1102653985100", "FULLNAME": "Irvington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.346633, 40.176431 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438760", "POINTID": "1102653989826", "FULLNAME": "Mayfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.349967, 40.195042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430346", "POINTID": "1102653966026", "FULLNAME": "Aultshire", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.346078, 40.211986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433963", "POINTID": "1102653977027", "FULLNAME": "Eaton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.350801, 40.340319 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436685", "POINTID": "1102654014069", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.351080, 40.448653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446095", "POINTID": "1102654022044", "FULLNAME": "Willman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.348301, 40.456432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446336", "POINTID": "1102654022260", "FULLNAME": "Wright Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.346912, 40.603099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103725951927", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.352169, 40.830469 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103725951927", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.352169, 40.830469 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12284 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058041686", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.343500, 41.011558 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081380329", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.348527, 41.018004 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046684575", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.346772, 41.031418 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058041343", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.350849, 41.047115 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046680508", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.342875, 41.084125 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472636404", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.341735, 41.080010 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141303358", "FULLNAME": "Gene Stratton Porter State Meml", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.348350, 41.481016 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452003", "POINTID": "1102654017081", "FULLNAME": "Oak Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.351920, 41.599494 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442435", "POINTID": "1102654018798", "FULLNAME": "Rykers Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.332178, 38.777837 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449483", "POINTID": "1102653972224", "FULLNAME": "Central", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.333289, 38.773669 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12544 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047944", "FULLNAME": "St Anthony Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.342003, 38.822056 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047905", "FULLNAME": "China Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.341354, 38.820804 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442482", "POINTID": "1102654018842", "FULLNAME": "Saint Anthony Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.341067, 38.824503 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441921", "POINTID": "1102653996365", "FULLNAME": "Rexville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.336626, 38.952557 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440749", "POINTID": "1102653994283", "FULLNAME": "Otter Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.331350, 39.118664 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439935", "POINTID": "1102653992034", "FULLNAME": "Napoleon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.330797, 39.204773 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442727", "POINTID": "1102654019093", "FULLNAME": "Saint Maurice Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.334963, 39.207552 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442726", "POINTID": "1102653997382", "FULLNAME": "Saint Maurice", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.334407, 39.366160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292422", "FULLNAME": "McMinn Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.332052, 39.528041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435476", "POINTID": "1102654012916", "FULLNAME": "Gregg Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.331629, 39.585603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438744", "POINTID": "1102653989744", "FULLNAME": "Mauzy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.338297, 39.623935 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436215", "POINTID": "1102653983704", "FULLNAME": "Hillsboro", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.331631, 39.968100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435850", "POINTID": "1102654013232", "FULLNAME": "Harvey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.337465, 40.007545 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440886", "POINTID": "1102654017631", "FULLNAME": "Parker Moore Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.341078, 40.178377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12375 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433237", "POINTID": "1102654011036", "FULLNAME": "Cullen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.331079, 40.253374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052075597", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.337551, 40.276485 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12367 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437697", "POINTID": "1102654014899", "FULLNAME": "Leaird Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.334134, 40.320320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12361 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292212", "FULLNAME": "Horizon Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.337318, 40.365900 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12350 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437974", "POINTID": "1102654015004", "FULLNAME": "Lion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.338578, 40.458932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12327 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439724", "POINTID": "1102653991865", "FULLNAME": "Mt Zion", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.334689, 40.650322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292290", "FULLNAME": "Johnson Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.337580, 40.774477 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12311 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443911", "POINTID": "1102654020103", "FULLNAME": "Sparks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.334689, 40.787268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103725969031", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.334077, 40.828933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013905", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.334719, 41.028937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430594", "POINTID": "1102654007147", "FULLNAME": "Bayliss Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.336081, 41.034491 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472939809", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.335083, 41.062877 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472939825", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.333656, 41.061071 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015682443073", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.332645, 41.067755 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472939692", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.330684, 41.063939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472939542", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.331213, 41.071751 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433778", "POINTID": "1102653976404", "FULLNAME": "Dunfee", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.337194, 41.086714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436980", "POINTID": "1102654014224", "FULLNAME": "Jeffries Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.339973, 41.208380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015496792955", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.332372, 41.235698 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080853023", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.331808, 41.238792 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089432538", "FULLNAME": "Plato", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.331602, 41.641604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12544 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047921", "FULLNAME": "Demaree Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.327136, 38.819970 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047937", "FULLNAME": "Copeland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.327474, 38.869927 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436764", "POINTID": "1102654014119", "FULLNAME": "Indian Kentuck Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.323011, 38.872557 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439935", "POINTID": "1102653992034", "FULLNAME": "Napoleon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.330797, 39.204773 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431331", "POINTID": "1102654008045", "FULLNAME": "Boocher Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.329687, 39.224495 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440095", "POINTID": "1102653992776", "FULLNAME": "New Pennington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.324684, 39.279773 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442316", "POINTID": "1102654018697", "FULLNAME": "Ross Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.325519, 39.294217 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440099", "POINTID": "1102653992818", "FULLNAME": "New Pt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.329129, 39.309772 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442325", "POINTID": "1102653997076", "FULLNAME": "Rossburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.326074, 39.325882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442325", "POINTID": "1102653997076", "FULLNAME": "Rossburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.326074, 39.325882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438979", "POINTID": "1102654015903", "FULLNAME": "Memorial Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.320519, 39.396437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110106433956", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.319720, 39.404605 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292298", "FULLNAME": "New Castle-Henry Co Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.326417, 39.875847 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452169", "POINTID": "1102653994946", "FULLNAME": "Pierson Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.326353, 39.903379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442256", "POINTID": "1102653996891", "FULLNAME": "Rogersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.329410, 40.035601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438960", "POINTID": "1102653990170", "FULLNAME": "Medford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.320798, 40.120599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437839", "POINTID": "1102653987898", "FULLNAME": "Liberty Cors", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.329966, 40.193375 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452304", "POINTID": "1102653957241", "FULLNAME": "Delaware Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.328855, 40.188931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434541", "POINTID": "1102653979026", "FULLNAME": "Five Points", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.319969, 40.581711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12319 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439502", "POINTID": "1102654016299", "FULLNAME": "Mossburg Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.327469, 40.722266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439502", "POINTID": "1102654016299", "FULLNAME": "Mossburg Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.327469, 40.722266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12307 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063103370", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.328359, 40.820279 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691464817", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.326388, 40.825142 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013848", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.330296, 41.027153 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013846", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.321707, 41.025965 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013899", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.329746, 41.037552 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013853", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.320784, 41.032411 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010947544465", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.329781, 41.052364 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010947544255", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.322978, 41.053420 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472939833", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.330089, 41.061522 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047851224", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.319862, 41.062438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472939545", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.330432, 41.070030 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046976791", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.323475, 41.070954 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046976080", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.321541, 41.079786 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058040083", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.328169, 41.232919 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046680555", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.320414, 41.235952 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058041826", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.329526, 41.236792 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446303", "POINTID": "1102654003281", "FULLNAME": "Woodruff", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.328863, 41.573382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452002", "POINTID": "1102654022205", "FULLNAME": "Woodruff Memorial Gardens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.323585, 41.576438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12533 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440786", "POINTID": "1102654017556", "FULLNAME": "Overturf Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.313290, 38.915613 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433030", "POINTID": "1102654010719", "FULLNAME": "Country Farm Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.317180, 38.993389 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430089", "POINTID": "1102653964520", "FULLNAME": "Allen Crossing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.316903, 39.103941 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110106433956", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.319720, 39.404605 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435956", "POINTID": "1102654013316", "FULLNAME": "Heaton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.318574, 39.576714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434320", "POINTID": "1102654011822", "FULLNAME": "Fairview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.309685, 39.686157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439659", "POINTID": "1102654016486", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.308854, 40.086155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12387 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292266", "FULLNAME": "Reese Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.315356, 40.153642 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292266", "FULLNAME": "Reese Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.315356, 40.153642 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439705", "POINTID": "1102654016530", "FULLNAME": "Mount Tabor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.314409, 40.162821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435279", "POINTID": "1102654012719", "FULLNAME": "Graham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.318022, 40.193932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12367 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435332", "POINTID": "1102653981352", "FULLNAME": "Granville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.318580, 40.317264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434541", "POINTID": "1102653979026", "FULLNAME": "Five Points", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.319969, 40.581711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12331 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443734", "POINTID": "1102654019989", "FULLNAME": "Snow Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.310522, 40.620877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442219", "POINTID": "1102653996818", "FULLNAME": "Rockford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.313577, 40.760045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443948", "POINTID": "1102654020140", "FULLNAME": "Spider Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.318580, 40.770601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12285 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00429991", "POINTID": "1102653963932", "FULLNAME": "Aboite", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.318024, 41.000879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444763", "POINTID": "1102654000639", "FULLNAME": "Timbercrest", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.314969, 41.017267 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013825", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.310860, 41.016941 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013854", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.319154, 41.029534 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013541", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.312048, 41.022069 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013540", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.308763, 41.026633 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013854", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.319154, 41.029534 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12280 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062799313", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.315157, 41.041074 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046977307", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.316289, 41.054296 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047851224", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.319862, 41.062438 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047851221", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.315994, 41.062505 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046977309", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.314897, 41.058454 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047851222", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.317311, 41.063164 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015491005012", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.309259, 41.079351 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046976083", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.318247, 41.078217 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046976078", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.318220, 41.079917 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015491005012", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.309259, 41.079351 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015495834608", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.312172, 41.088962 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046681056", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.310648, 41.212200 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046680586", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.319599, 41.227010 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058042099", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.315879, 41.236443 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046680553", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.310544, 41.232009 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058042108", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.317113, 41.236842 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11058042099", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.315879, 41.236443 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110727700155", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.309192, 41.440406 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141154854", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.311120, 41.484612 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444556", "POINTID": "1102654020769", "FULLNAME": "Tamarack Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.316640, 41.530050 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8618, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451921", "POINTID": "1102654011468", "FULLNAME": "Eagle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.315254, 41.722827 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089432668", "FULLNAME": "Brighton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.311743, 41.722809 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441296", "POINTID": "1102654017935", "FULLNAME": "Pleasant Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.306343, 38.767005 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047906", "FULLNAME": "Lemen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.299708, 38.854406 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047954", "FULLNAME": "Indian Kentucky Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -85.307052, 38.873141 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047911", "FULLNAME": "Canaan Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.297755, 38.865989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12535 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047941", "FULLNAME": "Jefferson Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -85.306432, 38.893711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445266", "POINTID": "1102654021329", "FULLNAME": "Vestal Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.308012, 38.921723 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435672", "POINTID": "1102653982265", "FULLNAME": "Haney Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.305791, 38.938945 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01848364", "POINTID": "1102654019614", "FULLNAME": "Shelby Church Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.299957, 38.975333 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435432", "POINTID": "1102654012863", "FULLNAME": "Greendale Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.307183, 39.124775 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046038345", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.307449, 39.402128 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110106434486", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.299654, 39.399411 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046038345", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.307449, 39.402128 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438142", "POINTID": "1102654015095", "FULLNAME": "Little Salt Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.299128, 39.512269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440676", "POINTID": "1102653994056", "FULLNAME": "Orange", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.299128, 39.584214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440678", "POINTID": "1102654017478", "FULLNAME": "Orange-North Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.298573, 39.598102 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440558", "POINTID": "1102654017240", "FULLNAME": "Old Friends Church Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.298573, 39.606157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435123", "POINTID": "1102653980941", "FULLNAME": "Glenwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.300241, 39.625879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434309", "POINTID": "1102653978326", "FULLNAME": "Fairview", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.301076, 39.685601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434385", "POINTID": "1102653978416", "FULLNAME": "Falmouth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.301076, 39.700878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452168", "POINTID": "1102653973966", "FULLNAME": "Corwin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.299131, 39.888379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439043", "POINTID": "1102653990353", "FULLNAME": "Messick", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.302741, 39.975324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442257", "POINTID": "1102654018676", "FULLNAME": "Rogersville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.304410, 40.043101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439659", "POINTID": "1102654016486", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.308854, 40.086155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439640", "POINTID": "1102653991780", "FULLNAME": "Mt Pleasant", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.305796, 40.088934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434441", "POINTID": "1102654011910", "FULLNAME": "Felton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.303296, 40.094767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440029", "POINTID": "1102653992364", "FULLNAME": "New Burlington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.297742, 40.120043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440029", "POINTID": "1102653992364", "FULLNAME": "New Burlington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.297742, 40.120043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436669", "POINTID": "1102653984702", "FULLNAME": "Hyde Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.308299, 40.192543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446288", "POINTID": "1102654003254", "FULLNAME": "Woodland Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.308022, 40.196710 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12368 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435333", "POINTID": "1102654012766", "FULLNAME": "Granville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.306633, 40.310597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12332 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439183", "POINTID": "1102654016090", "FULLNAME": "Miller Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.306912, 40.610878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013701", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.304047, 41.016638 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013344", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.299557, 41.020841 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062624258", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.299246, 41.017134 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013389", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.297873, 41.029716 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013539", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.307186, 41.027685 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013534", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.302470, 41.028152 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013386", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.297707, 41.027068 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013551", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.302604, 41.029910 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014012", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.299973, 41.062543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014130", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.307306, 41.078821 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014132", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.302932, 41.077618 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015495947993", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.305775, 41.086601 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014129", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.303806, 41.083191 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014128", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.300944, 41.082667 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015495834552", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.308090, 41.088912 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110727700303", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.307765, 41.448991 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110727700305", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.302768, 41.450656 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102214283164", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.300829, 41.446822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072556064", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.307722, 41.451856 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072556288", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.298573, 41.455195 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430883", "POINTID": "1102654007492", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.298863, 41.541160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047908", "FULLNAME": "Lyons Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.290475, 38.772159 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12544 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047904", "FULLNAME": "Brown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.291835, 38.820857 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047899", "FULLNAME": "Lee Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.287715, 38.843443 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047911", "FULLNAME": "Canaan Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.297755, 38.865989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01848363", "POINTID": "1102654010392", "FULLNAME": "Concord Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.291623, 38.937001 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446206", "POINTID": "1102654022084", "FULLNAME": "Wise Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.289400, 38.947835 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433324", "POINTID": "1102654011123", "FULLNAME": "Daubenheyer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.297457, 38.988667 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440723", "POINTID": "1102653994228", "FULLNAME": "Osgood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.291632, 39.129284 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452132", "POINTID": "1102653987348", "FULLNAME": "Laugheryville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.296907, 39.228106 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449650", "POINTID": "1102653977816", "FULLNAME": "Enochsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.297463, 39.334217 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449650", "POINTID": "1102653977816", "FULLNAME": "Enochsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.297463, 39.334217 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430167", "POINTID": "1102653965017", "FULLNAME": "Andersonville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.288850, 39.497546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444264", "POINTID": "1102653999682", "FULLNAME": "Straughn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.291350, 39.808934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440029", "POINTID": "1102653992364", "FULLNAME": "New Burlington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.297742, 40.120043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440029", "POINTID": "1102653992364", "FULLNAME": "New Burlington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.297742, 40.120043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452329", "POINTID": "1102653958359", "FULLNAME": "Green Hills Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.294687, 40.158377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444932", "POINTID": "1102654021072", "FULLNAME": "Truitt Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.289132, 40.171709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12375 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445062", "POINTID": "1102654021192", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.292745, 40.251431 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449648", "POINTID": "1102653975708", "FULLNAME": "Desoto", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.293579, 40.246986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12368 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431122", "POINTID": "1102654007716", "FULLNAME": "Black Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.292745, 40.305598 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438993", "POINTID": "1102654015915", "FULLNAME": "Memorial Park", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.287745, 40.358653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292009", "FULLNAME": "Smith Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.287573, 40.453121 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12337 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440502", "POINTID": "1102654017140", "FULLNAME": "Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.287190, 40.564767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12289 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292150", "FULLNAME": "Gm Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.290800, 40.966158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12287 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015489417107", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.293710, 40.984298 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047775557", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.286718, 40.980554 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12286 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015682451335", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.289201, 40.995022 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013345", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.297508, 41.020590 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013335", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.289910, 41.019064 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013389", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.297873, 41.029716 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013382", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.288145, 41.029759 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013386", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.297707, 41.027068 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013380", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.286777, 41.025732 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013389", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.297873, 41.029716 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062620230", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.289641, 41.036173 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013382", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.288145, 41.029759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052010110", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.287729, 41.060820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062796485", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.297310, 41.067540 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052010112", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.288040, 41.062976 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052009779", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.286822, 41.068044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014135", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.297192, 41.077689 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014157", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.287005, 41.076806 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014127", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.297288, 41.083445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430240", "POINTID": "1102653965439", "FULLNAME": "Arcola", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.294137, 41.103657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442110", "POINTID": "1102654018605", "FULLNAME": "Riverview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.288306, 41.190602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504291993", "FULLNAME": "Tropria Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.296197, 41.244202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12252 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450536", "POINTID": "1102654012270", "FULLNAME": "Fulk Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.289416, 41.275325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450533", "POINTID": "1102653977278", "FULLNAME": "Ege", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.287750, 41.292826 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102214276656", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.288534, 41.442248 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292604", "FULLNAME": "Parkview Noble Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.295684, 41.447799 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438539", "POINTID": "1102653989224", "FULLNAME": "Manville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.285508, 38.787837 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12534 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430483", "POINTID": "1102653966654", "FULLNAME": "Barbersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.280790, 38.905889 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12533 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047936", "FULLNAME": "Buchanan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.283743, 38.913107 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430382", "POINTID": "1102654008727", "FULLNAME": "Buchanan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.279677, 38.916168 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432992", "POINTID": "1102653973913", "FULLNAME": "Correct", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.286345, 39.008665 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436333", "POINTID": "1102654013730", "FULLNAME": "Holman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.283293, 39.020332 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102323279945", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.285621, 39.124821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102323200787", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.284677, 39.139335 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442882", "POINTID": "1102654019207", "FULLNAME": "Salem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.277182, 39.220329 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440543", "POINTID": "1102654017196", "FULLNAME": "Old Brick Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.279127, 39.500046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445940", "POINTID": "1102654021864", "FULLNAME": "White Heart Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.275796, 39.876713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12383 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046693061", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.284534, 40.186168 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435149", "POINTID": "1102654012586", "FULLNAME": "Godlove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.283022, 40.277541 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12339 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439371", "POINTID": "1102653991308", "FULLNAME": "Montpelier", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.277467, 40.553932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12321 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449685", "POINTID": "1102653987887", "FULLNAME": "Liberty Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.280522, 40.699211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436477", "POINTID": "1102654013808", "FULLNAME": "Horeb Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.276356, 40.827823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12296 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436530", "POINTID": "1102654013857", "FULLNAME": "Hoverstock Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.280246, 40.912825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12295 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446424", "POINTID": "1102654003590", "FULLNAME": "Zanesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.280522, 40.917266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12287 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015490984549", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.282743, 40.984237 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015490984467", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.280366, 40.982433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013336", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.285020, 41.019908 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013302", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.276541, 41.020398 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052017465", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.285441, 41.027626 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052012414", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.281520, 41.031135 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052012345", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.283585, 41.051889 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052010111", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.285017, 41.062756 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052012342", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.282603, 41.056013 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052009768", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.279004, 41.071097 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052010113", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.282206, 41.063597 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052010111", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.285017, 41.062756 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052009771", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.275772, 41.067462 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014160", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.285245, 41.079394 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014157", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.287005, 41.076806 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014159", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.285390, 41.077616 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014163", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.278086, 41.078601 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052009766", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.275678, 41.071840 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014160", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.285245, 41.079394 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014161", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.280626, 41.080783 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442751", "POINTID": "1102654019123", "FULLNAME": "Saint Patricks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.284615, 41.089759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434038", "POINTID": "1102654011563", "FULLNAME": "Eel River Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.286082, 41.191159 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141157231", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.283019, 41.438773 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141157225", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.280366, 41.442286 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110727700127", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.280342, 41.435256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141190420", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.282710, 41.443677 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141154304", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.280280, 41.443585 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443832", "POINTID": "1102654020027", "FULLNAME": "South Milford Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.276362, 41.526716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451985", "POINTID": "1102653958040", "FULLNAME": "Fort Wayne Ymca-Camp Potawotami", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.281361, 41.547550 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442249", "POINTID": "1102654018671", "FULLNAME": "Rogers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.282751, 41.649493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451919", "POINTID": "1102654016160", "FULLNAME": "Mongo Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.283306, 41.683662 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089432669", "FULLNAME": "Mongo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.280235, 41.684451 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451920", "POINTID": "1102654014330", "FULLNAME": "K of P Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.281364, 41.692273 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047952", "FULLNAME": "Hakins Vernon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.271614, 38.798307 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439258", "POINTID": "1102654016102", "FULLNAME": "Milton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.275232, 38.809780 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12534 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441639", "POINTID": "1102654018176", "FULLNAME": "Pullum Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.266344, 38.906169 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12533 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432885", "POINTID": "1102654010511", "FULLNAME": "Conner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.267733, 38.913946 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435217", "POINTID": "1102654012624", "FULLNAME": "Gordon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.266067, 38.953112 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436666", "POINTID": "1102654014002", "FULLNAME": "Hyatt Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.275511, 38.968946 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437383", "POINTID": "1102654014610", "FULLNAME": "Kloche Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.268567, 38.980890 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433491", "POINTID": "1102654011262", "FULLNAME": "Derringer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.274401, 38.985890 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441036", "POINTID": "1102654017782", "FULLNAME": "Perseverance Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.266070, 39.133108 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449859", "POINTID": "1102653963338", "FULLNAME": "Vine Springs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.268849, 39.143943 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431764", "POINTID": "1102653970404", "FULLNAME": "Buena Vista", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.272462, 39.438938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445940", "POINTID": "1102654021864", "FULLNAME": "White Heart Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.275796, 39.876713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443706", "POINTID": "1102653998631", "FULLNAME": "Smithfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.268575, 40.170044 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12383 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431358", "POINTID": "1102654008088", "FULLNAME": "Bortsfield Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.273891, 40.185912 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445922", "POINTID": "1102654021851", "FULLNAME": "White Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.273020, 40.195321 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443212", "POINTID": "1102653998003", "FULLNAME": "Selma", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.268854, 40.191709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046693050", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.265491, 40.206707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12377 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443913", "POINTID": "1102654020108", "FULLNAME": "Sparr Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.274688, 40.233930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439236", "POINTID": "1102653990789", "FULLNAME": "Millgrove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.274967, 40.408376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12339 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446290", "POINTID": "1102654022192", "FULLNAME": "Woodlawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.269691, 40.553378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062787942", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.274020, 41.018645 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013229", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.270131, 41.020906 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052012885", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.272695, 41.026869 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062787001", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.266727, 41.021964 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062787006", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.265869, 41.021236 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052012410", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.275452, 41.037223 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12280 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052007011", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.272126, 41.045705 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052012391", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.264710, 41.043852 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052012348", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.276080, 41.051897 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052012353", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.268060, 41.054603 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052007104", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.275436, 41.048927 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052007015", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.267741, 41.050260 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052007983", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.264748, 41.054429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052009486", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.273966, 41.060841 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052006449", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.264716, 41.059006 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052007983", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.264748, 41.054429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052009771", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.275772, 41.067462 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062789997", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.271823, 41.078848 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014164", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.264820, 41.076670 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047756112", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.273977, 41.084852 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062789995", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.271142, 41.079849 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015481895755", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.267202, 41.084341 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014169", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.265386, 41.080113 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047756111", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.274025, 41.088683 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504038028", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.269702, 41.088321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445555", "POINTID": "1102654021576", "FULLNAME": "Watterson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.268583, 41.205882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12252 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292670", "FULLNAME": "Ries Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.269806, 41.275869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437239", "POINTID": "1102653985828", "FULLNAME": "Kendallville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.264970, 41.441438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440548", "POINTID": "1102654017198", "FULLNAME": "Old Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.269973, 41.450049 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102215704551", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.266346, 41.453647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141303351", "FULLNAME": "Religious Instn", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -85.268168, 41.461189 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443831", "POINTID": "1102653998849", "FULLNAME": "South Milford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.272194, 41.532549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8622, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451998", "POINTID": "1102654008687", "FULLNAME": "Brushy Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.272194, 41.613104 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047940", "FULLNAME": "Bear Farm Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.255709, 38.758434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047903", "FULLNAME": "Ayler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.258259, 38.770773 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437132", "POINTID": "1102654014315", "FULLNAME": "Joyce Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.253842, 38.771170 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437132", "POINTID": "1102654014315", "FULLNAME": "Joyce Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.253842, 38.771170 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436775", "POINTID": "1102653959128", "FULLNAME": "Indian Mound", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.261341, 38.784505 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047934", "FULLNAME": "Ralston Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.254215, 38.808371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12535 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442060", "POINTID": "1102654018548", "FULLNAME": "Risk Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.256621, 38.894778 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12534 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047947", "FULLNAME": "Hicks Ridge Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -85.255599, 38.904080 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12533 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047912", "FULLNAME": "Conner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.264646, 38.913274 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439022", "POINTID": "1102654015951", "FULLNAME": "Mermoud Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.254400, 38.912558 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442061", "POINTID": "1102654018549", "FULLNAME": "Risk Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.256068, 38.923391 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108613912795", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.257010, 39.050300 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292184", "FULLNAME": "Batesville Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.258423, 39.343126 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440080", "POINTID": "1102653992615", "FULLNAME": "New Lisbon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.263018, 39.863378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292308", "FULLNAME": "Starkey's Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.259241, 40.042532 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440705", "POINTID": "1102654017509", "FULLNAME": "Orr Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.254966, 40.227265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292240", "FULLNAME": "Finney's Airpark", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.259247, 40.258917 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445005", "POINTID": "1102654021128", "FULLNAME": "Twibell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.258858, 40.515320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12339 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438709", "POINTID": "1102653989688", "FULLNAME": "Matamoras", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.263023, 40.554211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437280", "POINTID": "1102653985972", "FULLNAME": "Keystone", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.259413, 40.595601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12299 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442576", "POINTID": "1102654018986", "FULLNAME": "Saint Johns Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.260800, 40.883935 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12286 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047827361", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.264525, 40.991587 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440906", "POINTID": "1102653994511", "FULLNAME": "Parkway Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.264412, 41.028381 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438532", "POINTID": "1102653989198", "FULLNAME": "Manor Woods", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.262192, 41.025325 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446648", "POINTID": "1102653977541", "FULLNAME": "Ellison", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.255800, 41.027824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052012400", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.263061, 41.034936 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052012398", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.259169, 41.036769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12280 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052012389", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.264954, 41.042238 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052012391", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.264710, 41.043852 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052012397", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.257605, 41.038432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052007983", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.264748, 41.054429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052009443", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.264581, 41.061789 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052009417", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.264673, 41.069834 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052009440", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.258748, 41.064647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014164", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.264820, 41.076670 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014223", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.257793, 41.079197 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774834", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.258485, 41.087733 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062799316", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.263761, 41.083019 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014223", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.257793, 41.079197 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774834", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.258485, 41.087733 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12235 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437978", "POINTID": "1102653988195", "FULLNAME": "Lisbon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.259694, 41.411160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141150689", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.257286, 41.420513 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141157005", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.262194, 41.432377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437239", "POINTID": "1102653985828", "FULLNAME": "Kendallville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.264970, 41.441438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110713454348", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.261237, 41.455282 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437561", "POINTID": "1102654014750", "FULLNAME": "Lakeview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.254137, 41.458104 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445363", "POINTID": "1102654001712", "FULLNAME": "Wakeville Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.256961, 41.463081 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8623, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292680", "FULLNAME": "Kendallville Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.260805, 41.472714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449623", "POINTID": "1102653969875", "FULLNAME": "Brooksburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.243564, 38.736448 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047942", "FULLNAME": "Brooksburg Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -85.243204, 38.741655 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437132", "POINTID": "1102654014315", "FULLNAME": "Joyce Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.253842, 38.771170 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047910", "FULLNAME": "Brooks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.252635, 38.766051 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437132", "POINTID": "1102654014315", "FULLNAME": "Joyce Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.253842, 38.771170 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047943", "FULLNAME": "Brumbarger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.245200, 38.800753 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444734", "POINTID": "1102654020900", "FULLNAME": "Thornton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.251903, 38.879909 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439915", "POINTID": "1102654016646", "FULLNAME": "Myers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.244122, 38.935891 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430806", "POINTID": "1102653967659", "FULLNAME": "Benham", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.250234, 38.983667 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110116796066", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.250489, 38.978257 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438594", "POINTID": "1102654015452", "FULLNAME": "Marble Corner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.247179, 39.057275 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445260", "POINTID": "1102654001482", "FULLNAME": "Versailles", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.251903, 39.071999 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12513 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435864", "POINTID": "1102653952468", "FULLNAME": "Hassmer Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.247933, 39.085427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431440", "POINTID": "1102654008233", "FULLNAME": "Bradshaw Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.251267, 39.097920 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12493 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430466", "POINTID": "1102653966455", "FULLNAME": "Ballstown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.244127, 39.250606 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015503913726", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.250079, 39.303282 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108918202", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.246584, 39.302022 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449665", "POINTID": "1102653982151", "FULLNAME": "Hamburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.250795, 39.380881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437540", "POINTID": "1102653986884", "FULLNAME": "Lake View", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.248295, 39.485603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439249", "POINTID": "1102653990850", "FULLNAME": "Millville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.251905, 39.924768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292333", "FULLNAME": "Wilbur Wright Birthplace Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.243564, 39.954240 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439408", "POINTID": "1102653991366", "FULLNAME": "Mooreland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.251074, 39.997545 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436269", "POINTID": "1102654013688", "FULLNAME": "Hodson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.251350, 40.029767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434992", "POINTID": "1102653980398", "FULLNAME": "Gates Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.252742, 40.106156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292286", "FULLNAME": "Chuck's Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.252023, 40.259473 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12324 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438866", "POINTID": "1102654015716", "FULLNAME": "McFarren Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.247466, 40.673657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12319 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292567", "FULLNAME": "Miller Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.248689, 40.716143 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292573", "FULLNAME": "Grandlienard-Hogg Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.249245, 40.755588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292573", "FULLNAME": "Grandlienard-Hogg Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.249245, 40.755588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12311 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292519", "FULLNAME": "Mayer Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.242920, 40.785363 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12280 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292149", "FULLNAME": "The Lutheran Hosp of Indiana Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.247804, 41.039577 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052007269", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.253340, 41.051067 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052008314", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.243743, 41.053424 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052009320", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.249242, 41.060752 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052009313", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.246873, 41.062608 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052009317", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.249813, 41.067561 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062790538", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.245701, 41.079481 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014307", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.250430, 41.078809 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014306", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.249298, 41.075053 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774831", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.252487, 41.087669 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014225", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.252825, 41.080251 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014226", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.248290, 41.080287 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774830", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.252541, 41.088495 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12253 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450509", "POINTID": "1102653965528", "FULLNAME": "Ari", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.249416, 41.263659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450545", "POINTID": "1102654013763", "FULLNAME": "Hooper Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.253026, 41.341160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12242 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012027915810", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.248840, 41.359475 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141176421", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.245819, 41.358921 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102223239690", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.248966, 41.364015 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102223193360", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.242713, 41.361653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141187283", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.251203, 41.408953 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141163855", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.245200, 41.403487 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141303347", "FULLNAME": "Hospital", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.253128, 41.442688 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141190242", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.248483, 41.448177 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141303347", "FULLNAME": "Hospital", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.253128, 41.442688 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141192493", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.251672, 41.454003 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430380", "POINTID": "1102653950632", "FULLNAME": "Baby Mtn", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.248751, 41.462506 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445579", "POINTID": "1102654002078", "FULLNAME": "Wayne Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.250806, 41.481715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12225 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441037", "POINTID": "1102654017783", "FULLNAME": "Perseverance Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.251050, 41.497780 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436813", "POINTID": "1102653984985", "FULLNAME": "Indianola", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.246916, 41.564771 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104485790634", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.250071, 41.570509 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441845", "POINTID": "1102654018358", "FULLNAME": "Reed Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.243582, 41.593938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089432598", "FULLNAME": "Mt Pisgah", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.242794, 41.602399 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089432566", "FULLNAME": "Brushy Pr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.247332, 41.641474 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12555 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047918", "FULLNAME": "Morris Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -85.232738, 38.725114 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047933", "FULLNAME": "Philips Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.235852, 38.777446 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047907", "FULLNAME": "Lewis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.239680, 38.780927 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047917", "FULLNAME": "Mathis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.232011, 38.847640 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430709", "POINTID": "1102654007267", "FULLNAME": "Beebe Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.235788, 38.944501 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452119", "POINTID": "1102653987332", "FULLNAME": "Laughery Switch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.241348, 39.149497 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433187", "POINTID": "1102653974581", "FULLNAME": "Cross Roads", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.241627, 39.279495 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442764", "POINTID": "1102654019145", "FULLNAME": "Saint Pauls Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.236349, 39.281994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108915025", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.238832, 39.300179 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436629", "POINTID": "1102653984570", "FULLNAME": "Huntersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.233017, 39.303662 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108915025", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.238832, 39.300179 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12398 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431210", "POINTID": "1102653968534", "FULLNAME": "Blountsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.240200, 40.060039 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434823", "POINTID": "1102654012234", "FULLNAME": "Freidline Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.238298, 40.165599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444277", "POINTID": "1102654020486", "FULLNAME": "Strong Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.235522, 40.295043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12369 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430041", "POINTID": "1102653964321", "FULLNAME": "Albany", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.241911, 40.300875 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12368 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11051652749", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.240729, 40.307867 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12360 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431750", "POINTID": "1102654008777", "FULLNAME": "Buckles Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.234412, 40.378375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12358 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432906", "POINTID": "1102653973773", "FULLNAME": "Converse", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.239133, 40.389488 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444871", "POINTID": "1102654000941", "FULLNAME": "Trenton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.238856, 40.450043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12311 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292519", "FULLNAME": "Mayer Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.242920, 40.785363 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063127947", "FULLNAME": "New Fire Sta", "MTFCC": "K2182" }, "geometry": { "type": "Point", "coordinates": [ -85.235957, 40.830524 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445136", "POINTID": "1102654001171", "FULLNAME": "Uniondale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.241632, 40.830601 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063127947", "FULLNAME": "New Fire Sta", "MTFCC": "K2182" }, "geometry": { "type": "Point", "coordinates": [ -85.235957, 40.830524 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014446", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.242609, 41.048050 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440407", "POINTID": "1102654017054", "FULLNAME": "Oak Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.232467, 41.048658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052009310", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.242046, 41.061965 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431523", "POINTID": "1102653969510", "FULLNAME": "Brierwood Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.234136, 41.055325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052009323", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.243094, 41.067577 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052009309", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.238470, 41.063947 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014332", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.234023, 41.074881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015481897231", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.240573, 41.092045 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047785426", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.234495, 41.091206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292005", "FULLNAME": "Confer's Place Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.241193, 41.097256 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433797", "POINTID": "1102653976491", "FULLNAME": "Dunn Mill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.235801, 41.162269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433797", "POINTID": "1102653976491", "FULLNAME": "Dunn Mill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.235801, 41.162269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12242 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102223192337", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.233041, 41.356944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102223193360", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.242713, 41.361653 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141183228", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.234460, 41.361249 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12240 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442696", "POINTID": "1102654019077", "FULLNAME": "Saint Marys Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.238862, 41.375327 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472355006", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.238805, 41.370949 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141186741", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.237177, 41.372075 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102223258983", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.232194, 41.369703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141159520", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.232588, 41.451054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141186968", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.239366, 41.459006 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141159520", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.232588, 41.451054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12229 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051956648", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.238129, 41.461101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446289", "POINTID": "1102654003256", "FULLNAME": "Woodland Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.239693, 41.554493 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443252", "POINTID": "1102653998110", "FULLNAME": "Shady Nook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.233304, 41.556715 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451891", "POINTID": "1102654000257", "FULLNAME": "Tall Timbers", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.234136, 41.550605 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435846", "POINTID": "1102653982752", "FULLNAME": "Hartzel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.235804, 41.563383 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089432598", "FULLNAME": "Mt Pisgah", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.242794, 41.602399 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047935", "FULLNAME": "Vaughan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.230365, 38.717155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12550 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047900", "FULLNAME": "Home Cpl", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -85.228892, 38.769108 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047915", "FULLNAME": "Konkle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.224633, 38.783150 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047925", "FULLNAME": "Jackson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.229458, 38.788544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047917", "FULLNAME": "Mathis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.232011, 38.847640 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446186", "POINTID": "1102654022080", "FULLNAME": "Winkler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.223289, 38.953667 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110116759084", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.224043, 39.291048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430573", "POINTID": "1102653966920", "FULLNAME": "Batesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.222184, 39.300050 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442571", "POINTID": "1102654018973", "FULLNAME": "Saint Johns Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.230794, 39.304216 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108914437", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.225003, 39.306522 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430500", "POINTID": "1102654007030", "FULLNAME": "Barnes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.223294, 39.398661 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444175", "POINTID": "1102654020413", "FULLNAME": "Stipps Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.225239, 39.436437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438294", "POINTID": "1102653988564", "FULLNAME": "Longwood Crossing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.227347, 39.655952 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430756", "POINTID": "1102654007330", "FULLNAME": "Bell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.221629, 39.899767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12389 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292258", "FULLNAME": "Belknap-Icarus Acres Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.229243, 40.132808 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12368 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046632676", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.223047, 40.310716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12367 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046632678", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.228814, 40.315078 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12327 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435457", "POINTID": "1102653981725", "FULLNAME": "Greenville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.226355, 40.654489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12326 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441431", "POINTID": "1102653995366", "FULLNAME": "Poneto", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.221631, 40.656990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445670", "POINTID": "1102654002190", "FULLNAME": "Wellsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.221631, 40.666156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063102498", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.229675, 40.772982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12288 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440178", "POINTID": "1102653993148", "FULLNAME": "Nine Mile", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.224968, 40.975046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12286 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434625", "POINTID": "1102654012084", "FULLNAME": "Fogwell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.226357, 40.996435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12285 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434625", "POINTID": "1102654012084", "FULLNAME": "Fogwell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.226357, 40.996435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047759214", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.223726, 41.053189 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433027", "POINTID": "1102653974047", "FULLNAME": "Country Club Gardens", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.222468, 41.049769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014406", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.231236, 41.056648 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014334", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.230330, 41.075900 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014337", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.228095, 41.081175 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047785437", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.232129, 41.095643 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015481893053", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.224407, 41.103722 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12272 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015495337881", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.225730, 41.106485 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102223179082", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.232100, 41.361931 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102223178802", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.224442, 41.361015 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141165017", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.228567, 41.440818 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110141157427", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.221502, 41.439664 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296179945", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.229501, 41.450951 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296179944", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.230697, 41.451659 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296179945", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.229501, 41.450951 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442973", "POINTID": "1102653954463", "FULLNAME": "Sand Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.224971, 41.514215 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445850", "POINTID": "1102654021771", "FULLNAME": "Weston Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.223305, 41.512550 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451903", "POINTID": "1102654014696", "FULLNAME": "Lake Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.224136, 41.521439 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437559", "POINTID": "1102653987005", "FULLNAME": "Lakeview", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.220802, 41.545882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435357", "POINTID": "1102653981379", "FULLNAME": "Gravel Beach", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.223305, 41.550882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451910", "POINTID": "1102654011510", "FULLNAME": "East Springfield United Methodist Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.223302, 41.640882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435437", "POINTID": "1102653981655", "FULLNAME": "Greenfield Mills", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.225526, 41.750606 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12551 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047902", "FULLNAME": "Wolf Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.212362, 38.757585 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047931", "FULLNAME": "McHenry Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.209771, 38.810509 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446411", "POINTID": "1102654022345", "FULLNAME": "Young Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.219121, 38.942002 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430567", "POINTID": "1102654007107", "FULLNAME": "Basset Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.219400, 38.952834 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440168", "POINTID": "1102654016859", "FULLNAME": "Nickolson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.213011, 38.951723 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440628", "POINTID": "1102653993981", "FULLNAME": "Olean", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.218568, 38.990332 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442800", "POINTID": "1102654019171", "FULLNAME": "Saint Peters Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.214955, 38.990332 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430890", "POINTID": "1102654007445", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.213845, 39.037834 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433450", "POINTID": "1102654011214", "FULLNAME": "Delaware Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.220513, 39.150331 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504024061", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.211847, 39.284488 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110116793428", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.216224, 39.300007 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110116788232", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.216117, 39.300804 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103945369409", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.211597, 39.304944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072997019", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.215658, 39.319421 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010866122784", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.211428, 39.318479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431407", "POINTID": "1102654008177", "FULLNAME": "Bowman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.213571, 39.412826 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439123", "POINTID": "1102653990556", "FULLNAME": "Midway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.216629, 39.459770 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431809", "POINTID": "1102653970614", "FULLNAME": "Bunker Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.212461, 39.633378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446175", "POINTID": "1102654003094", "FULLNAME": "Windsor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.212721, 40.154480 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12369 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102341779717", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.215776, 40.301215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12361 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111663002", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.218166, 40.366507 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439703", "POINTID": "1102654016523", "FULLNAME": "Mount Tablor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.215800, 40.380321 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436684", "POINTID": "1102654014068", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.214690, 40.382266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445575", "POINTID": "1102654021588", "FULLNAME": "Wayman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.216355, 40.406987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12310 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452367", "POINTID": "1102653961049", "FULLNAME": "Murray Conservation Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.213856, 40.792546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052005561", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.214601, 41.053260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444765", "POINTID": "1102654000659", "FULLNAME": "Times Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.219413, 41.061714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445846", "POINTID": "1102654002578", "FULLNAME": "Westmoor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.210524, 41.069213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430186", "POINTID": "1102653965176", "FULLNAME": "Ansley Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.212190, 41.078381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047839215", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.214151, 41.094166 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12272 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292087", "FULLNAME": "Adderly's Pad", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.218107, 41.107417 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047773248", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.210471, 41.145398 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047773247", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.210463, 41.146131 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450600", "POINTID": "1102654000060", "FULLNAME": "Swan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.212469, 41.315883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12242 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102223176252", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.218944, 41.359604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437559", "POINTID": "1102653987005", "FULLNAME": "Lakeview", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.220802, 41.545882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12549 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047920", "FULLNAME": "Vernon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.208867, 38.774920 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047931", "FULLNAME": "McHenry Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.209771, 38.810509 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047945", "FULLNAME": "Brushy Fork Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.204728, 38.869516 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449643", "POINTID": "1102653974561", "FULLNAME": "Cross Plains", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.204677, 38.943946 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446127", "POINTID": "1102654022050", "FULLNAME": "Wilson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.204401, 39.041999 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436007", "POINTID": "1102654013391", "FULLNAME": "Henderson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.203567, 39.053110 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433448", "POINTID": "1102653975456", "FULLNAME": "Delaware", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.207179, 39.147831 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438298", "POINTID": "1102653988583", "FULLNAME": "Lookout", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.207458, 39.195328 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292410", "FULLNAME": "Anderson Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.204277, 39.195264 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016953621186", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.199830, 39.287703 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12487 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109073008295", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.208749, 39.304023 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108914920", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.209178, 39.312546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449704", "POINTID": "1102653993973", "FULLNAME": "Oldenburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.204403, 39.339772 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436351", "POINTID": "1102654013756", "FULLNAME": "Holy Family Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.204291, 39.344143 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438635", "POINTID": "1102654015500", "FULLNAME": "Marlin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.208572, 39.394770 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446031", "POINTID": "1102653955399", "FULLNAME": "Wiley Indian Mound", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.201904, 39.496159 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432813", "POINTID": "1102653973643", "FULLNAME": "Columbia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.207182, 39.576437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080687697", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.206605, 39.629887 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080687571", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.200077, 39.629984 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107602661", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.209427, 39.631267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443827", "POINTID": "1102654020022", "FULLNAME": "South Lawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.206608, 39.808196 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452038", "POINTID": "1102653976271", "FULLNAME": "Dublin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.208851, 39.812267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432964", "POINTID": "1102654006943", "FULLNAME": "Bales Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.205238, 39.961156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12388 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444497", "POINTID": "1102654020671", "FULLNAME": "Swingley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.203296, 40.144766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440883", "POINTID": "1102653994453", "FULLNAME": "Parker City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.204114, 40.188931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12360 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433786", "POINTID": "1102653976419", "FULLNAME": "Dunkirk", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.209411, 40.375321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010871614121", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.200450, 40.381146 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441989", "POINTID": "1102653996451", "FULLNAME": "Ridertown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.206356, 40.435599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435526", "POINTID": "1102654012952", "FULLNAME": "Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.203577, 40.667267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444860", "POINTID": "1102654000891", "FULLNAME": "Travisville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.208022, 40.691989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12310 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439894", "POINTID": "1102653991990", "FULLNAME": "Murray", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.200799, 40.791991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12298 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292548", "FULLNAME": "K-9 Korner Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.204698, 40.892713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12280 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047773391", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.202531, 41.039410 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452325", "POINTID": "1102653958020", "FULLNAME": "Fort Wayne Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.204411, 41.053659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047839205", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.208915, 41.092825 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047839203", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.203518, 41.095253 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047759395", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.206522, 41.101351 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047759381", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.202942, 41.096187 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047773240", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.204599, 41.142512 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047773242", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.203797, 41.144235 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047773246", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.205578, 41.146105 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047773245", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.202566, 41.146038 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047831961", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.202075, 41.194699 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108639229989", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.202236, 41.196161 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051966101", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.201997, 41.287808 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450601", "POINTID": "1102654020640", "FULLNAME": "Swan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.203859, 41.308382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072556532", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.203199, 41.440913 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444274", "POINTID": "1102653999728", "FULLNAME": "Stroh", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.199414, 41.581438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451890", "POINTID": "1102653993627", "FULLNAME": "Oak Lodge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.202470, 41.594773 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437571", "POINTID": "1102653987105", "FULLNAME": "Lamb", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.188007, 38.692006 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12558 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292451", "FULLNAME": "Robinson Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.198283, 38.694504 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431162", "POINTID": "1102654007731", "FULLNAME": "Blair Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.194122, 39.004222 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449039", "POINTID": "1102653995664", "FULLNAME": "Prattsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.188012, 39.161720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110116793232", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.193122, 39.271567 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051964775", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.193975, 39.283443 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051964774", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.192765, 39.282150 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051964778", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.195450, 39.285104 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436892", "POINTID": "1102653952843", "FULLNAME": "Jackson Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.194128, 39.448659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436987", "POINTID": "1102654014235", "FULLNAME": "Jenks Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.189126, 39.482827 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452137", "POINTID": "1102653991581", "FULLNAME": "Mt Auburn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.193806, 39.507099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430830", "POINTID": "1102653967744", "FULLNAME": "Bentonville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.194128, 39.745324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296197649", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.194833, 39.815494 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439521", "POINTID": "1102653991593", "FULLNAME": "Mt Auburn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.189683, 39.812824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445038", "POINTID": "1102654021144", "FULLNAME": "Ulrich Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.195517, 39.943379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445038", "POINTID": "1102654021144", "FULLNAME": "Ulrich Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.195517, 39.943379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12408 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449869", "POINTID": "1102653979849", "FULLNAME": "Franklin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.191073, 39.973934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12369 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434310", "POINTID": "1102653978333", "FULLNAME": "Fairview", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.195244, 40.298097 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434325", "POINTID": "1102654011832", "FULLNAME": "Fairview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.192744, 40.298375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12336 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431211", "POINTID": "1102654007802", "FULLNAME": "Bloxsom Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.193299, 40.575043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063095633", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.195080, 40.727850 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12317 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292561", "FULLNAME": "Wells County Sheriff's Department Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.196075, 40.733934 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063098855", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.191526, 40.736767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063094207", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.191081, 40.744762 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12309 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439896", "POINTID": "1102654016632", "FULLNAME": "Murray Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.195523, 40.800323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12300 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063102408", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.191649, 40.873272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12288 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292146", "FULLNAME": "Fort Wayne International Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.195163, 40.978470 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452378", "POINTID": "1102653961568", "FULLNAME": "Orchard Ridge Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.198022, 41.013657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052006387", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.195557, 41.037202 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052006383", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.192301, 41.036472 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12280 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052006385", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.194726, 41.038934 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052006384", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.191577, 41.037910 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052005726", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.196697, 41.047313 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052005727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.193047, 41.047813 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452317", "POINTID": "1102653957694", "FULLNAME": "Elks Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.193578, 41.122825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430900", "POINTID": "1102654007481", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.188924, 41.167612 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062790876", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.189120, 41.178624 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052048361", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.188372, 41.184498 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052048385", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.187897, 41.180483 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062790876", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.189120, 41.178624 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062794703", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.191183, 41.195269 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062584529", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.193063, 41.193317 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446643", "POINTID": "1102653964504", "FULLNAME": "Allen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.195826, 41.199658 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062794747", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.192870, 41.197291 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434329", "POINTID": "1102654011836", "FULLNAME": "Fairview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.191636, 41.235325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449681", "POINTID": "1102653987211", "FULLNAME": "Laotto", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.197998, 41.290450 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446337", "POINTID": "1102654022269", "FULLNAME": "Wright Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.189136, 41.561994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451894", "POINTID": "1102653990078", "FULLNAME": "Meadow Shores Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.190566, 41.583346 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446023", "POINTID": "1102654002898", "FULLNAME": "Wildwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.189413, 41.594773 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12559 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437571", "POINTID": "1102653987105", "FULLNAME": "Lamb", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.188007, 38.692006 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441232", "POINTID": "1102653995151", "FULLNAME": "Pleasant", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.183842, 38.870892 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12535 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441246", "POINTID": "1102654017907", "FULLNAME": "Pleasant Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.184955, 38.892559 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435390", "POINTID": "1102654012843", "FULLNAME": "Green Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.179121, 39.031167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441112", "POINTID": "1102653994940", "FULLNAME": "Pierceville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.179679, 39.133387 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449039", "POINTID": "1102653995664", "FULLNAME": "Prattsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.188012, 39.161720 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441569", "POINTID": "1102654018104", "FULLNAME": "Pratsburg Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.185236, 39.160331 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430004", "POINTID": "1102654006367", "FULLNAME": "Adams Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.178571, 39.221719 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439444", "POINTID": "1102653991469", "FULLNAME": "Morris", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.177455, 39.282285 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442746", "POINTID": "1102654019116", "FULLNAME": "Saint Nicholas Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.178571, 39.402549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437653", "POINTID": "1102653987361", "FULLNAME": "Laurel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.186349, 39.500880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440232", "POINTID": "1102654016973", "FULLNAME": "North Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.177737, 39.520881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12461 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440232", "POINTID": "1102654016973", "FULLNAME": "North Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.177737, 39.520881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444947", "POINTID": "1102654021081", "FULLNAME": "Tullis Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.187184, 39.598658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080688133", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.178303, 39.645922 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445029", "POINTID": "1102654001145", "FULLNAME": "Tyner Crossing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.176857, 39.655017 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449668", "POINTID": "1102653982539", "FULLNAME": "Harrisburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.179960, 39.686712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431506", "POINTID": "1102654008358", "FULLNAME": "Brick Church Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.182184, 39.903656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447636", "POINTID": "1102653975021", "FULLNAME": "Dalton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.181350, 39.983378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440006", "POINTID": "1102654016733", "FULLNAME": "Nettle Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.183018, 40.007823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438309", "POINTID": "1102653988625", "FULLNAME": "Losantville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.182739, 40.024213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442088", "POINTID": "1102654018585", "FULLNAME": "Riverside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.179129, 40.048934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434909", "POINTID": "1102654012291", "FULLNAME": "Gable Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.187184, 40.067267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12319 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063098878", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.185258, 40.720132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063096275", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.186030, 40.725220 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063099461", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.186972, 40.742004 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063102481", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.178874, 40.780346 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437335", "POINTID": "1102653986132", "FULLNAME": "Kingsland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.177187, 40.830047 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12304 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435462", "POINTID": "1102653981754", "FULLNAME": "Greenwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.176911, 40.844490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047839515", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.179081, 41.126217 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435874", "POINTID": "1102654013251", "FULLNAME": "Hatfield Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.178579, 41.131438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062790879", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.186784, 41.178139 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052048383", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.181379, 41.178192 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052048391", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.187685, 41.185794 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052048407", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.185641, 41.194158 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080847794", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.184735, 41.189835 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080847777", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.181371, 41.188832 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080847788", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.181366, 41.186805 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062583672", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.187299, 41.197830 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052048418", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.181776, 41.198437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105313227057", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.185684, 41.224705 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105313226960", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.182203, 41.221590 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015483115042", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.176822, 41.244417 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434150", "POINTID": "1102654011651", "FULLNAME": "Embrey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.179134, 41.336160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451895", "POINTID": "1102653998117", "FULLNAME": "Sha-Get Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.180524, 41.575050 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8630, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451896", "POINTID": "1102654002618", "FULLNAME": "Westview", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.182745, 41.586440 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12552 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434549", "POINTID": "1102653978957", "FULLNAME": "Five Points", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.174953, 38.746729 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439407", "POINTID": "1102653991360", "FULLNAME": "Moorefield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.170229, 38.805614 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12545 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439407", "POINTID": "1102653991360", "FULLNAME": "Moorefield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.170229, 38.805614 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430360", "POINTID": "1102653966160", "FULLNAME": "Avonburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.172177, 38.886446 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430747", "POINTID": "1102653967395", "FULLNAME": "Behlmer Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.169680, 39.202552 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12476 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441012", "POINTID": "1102653994710", "FULLNAME": "Peppertown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.174127, 39.398939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108935511", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.167735, 39.459612 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12458 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430115", "POINTID": "1102653964673", "FULLNAME": "Alpine", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.175792, 39.553936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080689120", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.168078, 39.633506 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107617885", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.168414, 39.641836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445029", "POINTID": "1102654001145", "FULLNAME": "Tyner Crossing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.176857, 39.655017 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445810", "POINTID": "1102654021740", "FULLNAME": "West Side Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.166072, 39.785602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431999", "POINTID": "1102653971156", "FULLNAME": "Cambridge City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.171627, 39.812546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119481920", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.170307, 39.818073 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445778", "POINTID": "1102654021706", "FULLNAME": "West Lawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.166627, 39.913933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12319 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063096286", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.176012, 40.722108 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063097124", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.167405, 40.714224 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063127905", "FULLNAME": "Hospital", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.174111, 40.726659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12317 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431264", "POINTID": "1102653968685", "FULLNAME": "Bluffton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.171632, 40.738657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440541", "POINTID": "1102654017190", "FULLNAME": "Old Bluffton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.175798, 40.745601 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063097020", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.171393, 40.745465 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063102467", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.172040, 40.753863 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063102070", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.170983, 40.751347 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063101144", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.176570, 40.759759 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063097119", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.168051, 40.768458 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440281", "POINTID": "1102653993373", "FULLNAME": "North Oaks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.173856, 40.776713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12310 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063101961", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.169138, 40.795084 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12309 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063102484", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.170055, 40.805009 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437335", "POINTID": "1102653986132", "FULLNAME": "Kingsland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.177187, 40.830047 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063101904", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.173673, 40.831072 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12304 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435462", "POINTID": "1102653981754", "FULLNAME": "Greenwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.176911, 40.844490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063100928", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.166042, 40.871150 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12299 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440726", "POINTID": "1102653994235", "FULLNAME": "Ossian", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.166354, 40.880603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12293 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446396", "POINTID": "1102654003490", "FULLNAME": "Yoder", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.176632, 40.931157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12284 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047810186", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.168443, 41.007644 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051988914", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.172756, 41.029405 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12280 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442578", "POINTID": "1102654018989", "FULLNAME": "Saint Johns Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.175245, 41.042824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436785", "POINTID": "1102653984932", "FULLNAME": "Indian Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.172466, 41.048381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437953", "POINTID": "1102654014984", "FULLNAME": "Lindenwood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.175800, 41.080047 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440265", "POINTID": "1102653993298", "FULLNAME": "North Highland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.166077, 41.088936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047788067", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.168408, 41.136227 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445398", "POINTID": "1102654001774", "FULLNAME": "Wallen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.166080, 41.161159 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052057490", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.174972, 41.186279 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052048330", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.168263, 41.182730 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080847760", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.175079, 41.188672 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052048325", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.167585, 41.187663 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052047402", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.167912, 41.202786 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052047586", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.166123, 41.205773 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062796775", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.175607, 41.218539 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436630", "POINTID": "1102653984590", "FULLNAME": "Huntertown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.172469, 41.228382 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062582996", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.170785, 41.221785 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436630", "POINTID": "1102653984590", "FULLNAME": "Huntertown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.172469, 41.228382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015483115042", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.176822, 41.244417 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435996", "POINTID": "1102653983109", "FULLNAME": "Helmer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.170245, 41.531160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444959", "POINTID": "1102654001032", "FULLNAME": "Turkey Creek", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.170801, 41.555882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052073313", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.166973, 41.643566 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436897", "POINTID": "1102654014187", "FULLNAME": "Jackson Prairie Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.171080, 41.686438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451908", "POINTID": "1102654009303", "FULLNAME": "Carlton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.172745, 41.736993 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451909", "POINTID": "1102654016073", "FULLNAME": "Mill Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.171914, 41.732828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452321", "POINTID": "1102653957906", "FULLNAME": "Fawn River Fish Hatchery", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.169414, 41.739493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12556 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438886", "POINTID": "1102654015755", "FULLNAME": "McKay Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.156617, 38.716172 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431461", "POINTID": "1102653969251", "FULLNAME": "Braytown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.158562, 38.730617 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432884", "POINTID": "1102654010482", "FULLNAME": "Connell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.161622, 38.985095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432884", "POINTID": "1102654010482", "FULLNAME": "Connell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.161622, 38.985095 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434859", "POINTID": "1102654012243", "FULLNAME": "Friendship Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.159678, 38.998390 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434141", "POINTID": "1102653977658", "FULLNAME": "Elrod", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.163846, 39.054778 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444268", "POINTID": "1102653999708", "FULLNAME": "Stringtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.163291, 39.098388 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438095", "POINTID": "1102654015084", "FULLNAME": "Little Memory Church", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.156346, 39.243941 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440365", "POINTID": "1102653993570", "FULLNAME": "Nulltown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.158294, 39.579769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080689533", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.163905, 39.636615 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718374753", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.156089, 39.636237 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080703014", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.156446, 39.647745 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107604349", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.162773, 39.648741 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080703013", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.158677, 39.648212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443852", "POINTID": "1102654020057", "FULLNAME": "South Side Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.157183, 39.780877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445810", "POINTID": "1102654021740", "FULLNAME": "West Side Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.166072, 39.785602 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439257", "POINTID": "1102653990889", "FULLNAME": "Milton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.155239, 39.788102 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432120", "POINTID": "1102654009262", "FULLNAME": "Capitol Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.156907, 39.809766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442087", "POINTID": "1102654018570", "FULLNAME": "Riverside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.165238, 39.821433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292522", "FULLNAME": "Hagerstown Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.162054, 39.888595 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12415 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119463060", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.160906, 39.917735 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452048", "POINTID": "1102653982074", "FULLNAME": "Hagerstown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.161628, 39.911156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12328 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444048", "POINTID": "1102654020214", "FULLNAME": "Stahl Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.160522, 40.641434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063096243", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.157467, 40.726005 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434286", "POINTID": "1102654011770", "FULLNAME": "Fair View Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.163854, 40.743656 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063094279", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.159012, 40.740195 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063102108", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.155845, 40.750719 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063102043", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.161595, 40.760387 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691763204", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.155552, 40.762873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063102005", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.163730, 40.765665 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063102473", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.163690, 40.778196 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691450690", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.159501, 40.778366 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103717967444", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.156483, 40.772120 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063100928", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.166042, 40.871150 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718413999", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.158288, 40.866881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12300 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440443", "POINTID": "1102654017088", "FULLNAME": "Oak Lawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.165519, 40.874491 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072963372", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.156341, 40.876979 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072963397", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.154882, 40.874850 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12299 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063101038", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.159605, 40.883363 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052005514", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.161233, 41.021450 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430352", "POINTID": "1102653966058", "FULLNAME": "Avalon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.157744, 41.016158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052005513", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.160689, 41.023767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292148", "FULLNAME": "Ft Wayne-District Operations Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.159833, 41.064270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440265", "POINTID": "1102653993298", "FULLNAME": "North Highland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.166077, 41.088936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449428", "POINTID": "1102653963053", "FULLNAME": "The Uncommons Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.163210, 41.101515 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052045821", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.156491, 41.153719 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445398", "POINTID": "1102654001774", "FULLNAME": "Wallen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.166080, 41.161159 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052042604", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.156971, 41.162019 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052045842", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.157698, 41.157356 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052045821", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.156491, 41.153719 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015496446521", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.162309, 41.170314 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052042593", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.158658, 41.164527 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052042604", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.156971, 41.162019 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052048061", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.165173, 41.178767 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052057795", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.162159, 41.172769 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015481920136", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.157484, 41.171491 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052047780", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.162743, 41.185958 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062583810", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.164025, 41.195285 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062583813", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.163269, 41.193957 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052047889", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.164567, 41.187736 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047778728", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.155968, 41.191175 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062583810", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.164025, 41.195285 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052047586", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.166123, 41.205773 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052047585", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.162649, 41.205531 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774652", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.155732, 41.204530 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774655", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.157661, 41.203440 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047850459", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.162330, 41.221840 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062799271", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.161823, 41.231709 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262962361", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.157100, 41.230242 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262962356", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.154984, 41.234105 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062893575", "FULLNAME": "Willow Ridge Golf Course", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -85.162019, 41.241041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432258", "POINTID": "1102653971865", "FULLNAME": "Cedar", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.156078, 41.312826 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12243 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430124", "POINTID": "1102653964801", "FULLNAME": "Altona", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.154968, 41.351438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12242 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064437407", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.154828, 41.352823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451892", "POINTID": "1102653984880", "FULLNAME": "Indian Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.155802, 41.622272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435443", "POINTID": "1102654012876", "FULLNAME": "Greenlawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.159412, 41.733939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433519", "POINTID": "1102653975766", "FULLNAME": "Dewberry", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.151620, 38.951168 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430035", "POINTID": "1102654006406", "FULLNAME": "Akers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.149120, 38.975613 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434856", "POINTID": "1102653980063", "FULLNAME": "Friendship", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.147731, 38.970335 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292400", "FULLNAME": "Lewis Airfield", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.150070, 39.181150 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292400", "FULLNAME": "Lewis Airfield", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.150070, 39.181150 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080718258", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.152106, 39.633987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107603934", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.151862, 39.644139 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107608516", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.150217, 39.700670 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439257", "POINTID": "1102653990889", "FULLNAME": "Milton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.155239, 39.788102 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434846", "POINTID": "1102654012238", "FULLNAME": "Friends Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.152183, 39.784767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103680220786", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.146596, 39.906016 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441146", "POINTID": "1102653995008", "FULLNAME": "Pinch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.146352, 40.106710 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432444", "POINTID": "1102654009779", "FULLNAME": "Cherry Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.145521, 40.277543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432254", "POINTID": "1102654009544", "FULLNAME": "Caylo Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.144131, 40.294486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12365 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436202", "POINTID": "1102654013583", "FULLNAME": "Hillcrest Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.150799, 40.334210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12363 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441834", "POINTID": "1102653996207", "FULLNAME": "Redkey", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.149965, 40.348932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446196", "POINTID": "1102654022083", "FULLNAME": "Winters Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.150244, 40.439211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441003", "POINTID": "1102653994671", "FULLNAME": "Pennville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.148300, 40.493933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12341 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430443", "POINTID": "1102653966368", "FULLNAME": "Balbec", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.148855, 40.530877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12339 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434469", "POINTID": "1102653978797", "FULLNAME": "Fiat", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.149963, 40.553373 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440360", "POINTID": "1102653993564", "FULLNAME": "Nottingham", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.150244, 40.581155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12332 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441064", "POINTID": "1102653994853", "FULLNAME": "Petroleum", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.150799, 40.611434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12327 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435314", "POINTID": "1102654012732", "FULLNAME": "Grannand Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.145800, 40.652822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12326 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449715", "POINTID": "1102653996281", "FULLNAME": "Reiffsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.151910, 40.655879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12319 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063097845", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.153991, 40.721547 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063097105", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.153034, 40.730572 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12317 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063101739", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.152543, 40.737061 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063097105", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.153034, 40.730572 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434119", "POINTID": "1102654011630", "FULLNAME": "Elm Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.152741, 40.741990 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063101670", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.149088, 40.739271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063102720", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.154573, 40.754407 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063101216", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.148852, 40.755141 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063101700", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.151996, 40.763940 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063101703", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.154305, 40.760314 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063101700", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.151996, 40.763940 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12300 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072963397", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.154882, 40.874850 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12285 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047773604", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.150360, 41.001583 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047773606", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.148911, 41.001788 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052005479", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.148667, 41.019068 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437539", "POINTID": "1102653986863", "FULLNAME": "Lake Shores", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.153854, 41.022270 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052005484", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.146806, 41.024506 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292100", "FULLNAME": "St Joseph Medical Ctr", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.149104, 41.078708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438399", "POINTID": "1102653988776", "FULLNAME": "Ludwig Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.154133, 41.136438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292019", "FULLNAME": "Smith Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.151497, 41.142792 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052045715", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.145647, 41.151306 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052042603", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.153248, 41.162193 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052042616", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.154021, 41.160799 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062795884", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.144303, 41.170405 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062790409", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.151204, 41.166328 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047837940", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.146063, 41.178696 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062584498", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.144338, 41.172563 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062785044", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.146991, 41.186949 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052047688", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.154243, 41.193551 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062785039", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.146344, 41.192643 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052047114", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.155166, 41.203264 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774653", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.154037, 41.202699 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052047015", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.151341, 41.198968 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052047016", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.149314, 41.197507 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774651", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.152808, 41.204750 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015501438150", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.146119, 41.210341 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015481885221", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.147396, 41.220113 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262960445", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.147353, 41.218634 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046736214", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.153704, 41.228132 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262960471", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.146961, 41.223171 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262961784", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.143992, 41.227682 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262962357", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.153911, 41.234597 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046736214", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.153704, 41.228132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048228807", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.145676, 41.342727 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12243 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430124", "POINTID": "1102653964801", "FULLNAME": "Altona", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.154968, 41.351438 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431978", "POINTID": "1102654009183", "FULLNAME": "Calvary Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.144413, 41.344771 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12242 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064437407", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.154828, 41.352823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432997", "POINTID": "1102654010676", "FULLNAME": "Corunna Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.147189, 41.419493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432996", "POINTID": "1102653973956", "FULLNAME": "Corunna", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.147189, 41.437271 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12555 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440536", "POINTID": "1102654017175", "FULLNAME": "Old Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.138839, 38.722561 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12531 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430635", "POINTID": "1102654007162", "FULLNAME": "Bear Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.137174, 38.928947 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12527 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446126", "POINTID": "1102654022049", "FULLNAME": "Wilson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.142731, 38.960612 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292420", "FULLNAME": "Buell Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.135111, 39.198041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292420", "FULLNAME": "Buell Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.135111, 39.198041 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110116791112", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.141540, 39.309163 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439045", "POINTID": "1102653990360", "FULLNAME": "Metamora", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.139403, 39.449771 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432888", "POINTID": "1102653973744", "FULLNAME": "Connersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.141146, 39.641190 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080717240", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.136106, 39.666369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12443 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107603712", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.133513, 39.678395 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436563", "POINTID": "1102653984452", "FULLNAME": "Huber", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.139126, 39.686157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107605928", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.136476, 39.703990 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107603347", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.136782, 39.700755 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107620223", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.135251, 39.711565 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691904106", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.133285, 39.815924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430648", "POINTID": "1102654007180", "FULLNAME": "Beard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.141626, 39.831156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12412 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430362", "POINTID": "1102654006825", "FULLNAME": "Awl Branch Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.134961, 39.938102 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438034", "POINTID": "1102654015054", "FULLNAME": "Little Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.143295, 40.012266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441452", "POINTID": "1102654018044", "FULLNAME": "Poplar Run Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.140519, 40.120878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432254", "POINTID": "1102654009544", "FULLNAME": "Caylo Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.144131, 40.294486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438570", "POINTID": "1102654015428", "FULLNAME": "Maple Lawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.142745, 40.494210 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436225", "POINTID": "1102654013603", "FULLNAME": "Hillside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.135522, 40.494488 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052005268", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.144180, 41.019204 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437947", "POINTID": "1102653988087", "FULLNAME": "Lincolnshire", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.140245, 41.027547 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436199", "POINTID": "1102653983635", "FULLNAME": "Hillcrest", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.134411, 41.026159 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047819970", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.140929, 41.084137 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047819969", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.137879, 41.084620 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440318", "POINTID": "1102653993485", "FULLNAME": "Northcrest", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.134966, 41.123104 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442765", "POINTID": "1102654019146", "FULLNAME": "Saint Pauls Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.139132, 41.138660 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052045711", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.140127, 41.153943 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052045713", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.141640, 41.151407 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052041653", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.133478, 41.152406 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052045711", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.140127, 41.153943 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052041649", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.137667, 41.154206 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052042812", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.142994, 41.166811 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052042278", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.138268, 41.163610 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062584496", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.142149, 41.172054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052046066", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.141326, 41.185756 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062785035", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.142844, 41.192481 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052046068", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.141275, 41.188123 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052046182", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.137992, 41.187530 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047785064", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.143195, 41.199071 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442378", "POINTID": "1102653997180", "FULLNAME": "Royville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.133022, 41.199771 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015484710635", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.141817, 41.209278 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015484712776", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.138365, 41.209330 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015771102341", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.144110, 41.217781 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262960446", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.143681, 41.219144 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015484713210", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.138998, 41.212331 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015484713014", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.137195, 41.213685 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262961784", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.143992, 41.227682 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262962207", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.141323, 41.232530 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262961760", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.135154, 41.231650 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262961783", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.142412, 41.228227 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431900", "POINTID": "1102653970895", "FULLNAME": "Butler Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.136763, 41.308376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048228858", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.144102, 41.341454 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12243 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434969", "POINTID": "1102653980301", "FULLNAME": "Garrett", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.135522, 41.349493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12242 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048229929", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.140159, 41.358577 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048229843", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.140065, 41.356192 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048230546", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.135522, 41.363153 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449727", "POINTID": "1102653997485", "FULLNAME": "Salem Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.139690, 41.585049 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12212 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431189", "POINTID": "1102654007792", "FULLNAME": "Block Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.139690, 41.607272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12211 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431189", "POINTID": "1102654007792", "FULLNAME": "Block Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.139690, 41.607272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00429980", "POINTID": "1102653963877", "FULLNAME": "Aaron", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.125785, 38.883114 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433093", "POINTID": "1102654010833", "FULLNAME": "Craven Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.130790, 39.105887 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439132", "POINTID": "1102653990620", "FULLNAME": "Milan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.131345, 39.121165 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017128696945", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.122100, 39.124530 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440578", "POINTID": "1102653993914", "FULLNAME": "Old Milan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.132459, 39.146443 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449736", "POINTID": "1102653999741", "FULLNAME": "Stumpke Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.131901, 39.177830 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432670", "POINTID": "1102653973123", "FULLNAME": "Clinton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.131901, 39.210607 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12493 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443903", "POINTID": "1102653999008", "FULLNAME": "Spades", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.122736, 39.253938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452134", "POINTID": "1102653990847", "FULLNAME": "Millville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.123570, 39.449216 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439735", "POINTID": "1102654016562", "FULLNAME": "Mount Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.126072, 39.570325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445057", "POINTID": "1102654021181", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.132182, 39.594491 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107617622", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.126488, 39.623538 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107823011", "FULLNAME": "Hospital", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.132424, 39.656493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107823011", "FULLNAME": "Hospital", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.132424, 39.656493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292177", "FULLNAME": "Mettel Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.131133, 39.698193 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119451868", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.129712, 39.743387 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439307", "POINTID": "1102653990994", "FULLNAME": "Modoc", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.126351, 40.045323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443145", "POINTID": "1102653997888", "FULLNAME": "Scott Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.126906, 40.091989 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443139", "POINTID": "1102654019418", "FULLNAME": "Scott Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.125796, 40.089211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446273", "POINTID": "1102654022157", "FULLNAME": "Wood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.126906, 40.112267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452093", "POINTID": "1102653980552", "FULLNAME": "Georgetown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.129133, 40.170876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434409", "POINTID": "1102653978590", "FULLNAME": "Farmland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.127403, 40.187812 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12373 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443328", "POINTID": "1102653998215", "FULLNAME": "Shedville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.128854, 40.265597 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432594", "POINTID": "1102654009983", "FULLNAME": "Claycomb Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.130522, 40.411987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445828", "POINTID": "1102654002471", "FULLNAME": "Westchester", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.128577, 41.026713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449427", "POINTID": "1102653955911", "FULLNAME": "Ayr-Way West Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.129133, 41.120604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449427", "POINTID": "1102653955911", "FULLNAME": "Ayr-Way West Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.129133, 41.120604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434689", "POINTID": "1102653979580", "FULLNAME": "Fort Wayne", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.128856, 41.130603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433124", "POINTID": "1102653974423", "FULLNAME": "Crestwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.123022, 41.140047 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047776807", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.122567, 41.153927 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052041658", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.126662, 41.152590 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047776980", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.122049, 41.151974 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052041856", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.131927, 41.161536 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047776807", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.122567, 41.153927 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052041453", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.127716, 41.169930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052044888", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.132188, 41.175842 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052040800", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.125249, 41.174548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052044676", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.130444, 41.183000 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052044677", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.129248, 41.180626 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052039387", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.124122, 41.180879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052044386", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.126265, 41.195323 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052051708", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.130943, 41.194891 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052044630", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.128679, 41.187643 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052039383", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.123350, 41.187338 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442378", "POINTID": "1102653997180", "FULLNAME": "Royville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.133022, 41.199771 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052044388", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.128210, 41.198403 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052044352", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.122561, 41.203063 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774278", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.128062, 41.210190 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774234", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.121888, 41.208475 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774279", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.129218, 41.212430 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774273", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.123433, 41.212165 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015501880718", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.128492, 41.228378 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015501892032", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.127912, 41.226320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015501880718", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.128492, 41.228378 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015771099946", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.123162, 41.228138 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048227115", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.132209, 41.333955 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048227064", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.132729, 41.335771 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12243 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048231647", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.122550, 41.347526 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048230564", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.131581, 41.364820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12227 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449653", "POINTID": "1102653978274", "FULLNAME": "Fairfield Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.128022, 41.482549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434599", "POINTID": "1102654012057", "FULLNAME": "Flint Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.131077, 41.645883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434598", "POINTID": "1102653979205", "FULLNAME": "Flint", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.127188, 41.650050 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441492", "POINTID": "1102653954051", "FULLNAME": "Potato Bug Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.112725, 38.741172 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430634", "POINTID": "1102654007160", "FULLNAME": "Bear Creek Cemeteries", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.114952, 38.953114 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017128696945", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.122100, 39.124530 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11017128696913", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.119345, 39.127181 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441775", "POINTID": "1102654018283", "FULLNAME": "Ransom Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.113289, 39.150886 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434763", "POINTID": "1102654012184", "FULLNAME": "Franklin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.112734, 39.177553 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110116795674", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.119042, 39.274854 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110116795667", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.119490, 39.275840 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12452 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107616042", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.117889, 39.602698 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107616054", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.115880, 39.601472 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107617946", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.120423, 39.641353 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441002", "POINTID": "1102653994668", "FULLNAME": "Pennville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.111392, 39.814027 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437127", "POINTID": "1102654014313", "FULLNAME": "Jordon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.121073, 40.004213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444127", "POINTID": "1102654020328", "FULLNAME": "Stephens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.113021, 40.387543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12344 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445012", "POINTID": "1102653955231", "FULLNAME": "Twin Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.118578, 40.510600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12341 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445769", "POINTID": "1102654021698", "FULLNAME": "West Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.116355, 40.531711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452261", "POINTID": "1102653958210", "FULLNAME": "Glenbrook Square", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.116631, 41.013936 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449426", "POINTID": "1102653957140", "FULLNAME": "Decatur Road Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.113855, 41.015324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476179085", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.120949, 41.127328 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047776980", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.122049, 41.151974 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047777609", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.116859, 41.149369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047776802", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.120174, 41.156518 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062798368", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.112253, 41.155704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052041461", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.117634, 41.169664 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052041586", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.115705, 41.163091 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052040798", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.122105, 41.173956 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052040795", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.121180, 41.177855 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052039501", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.118103, 41.179233 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052038938", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.119434, 41.193218 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052038944", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.114729, 41.190414 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052044351", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.120944, 41.202833 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047833574", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.111001, 41.197557 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774234", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.121888, 41.208475 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052044206", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.110918, 41.210374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774272", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.121652, 41.212198 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046739366", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.116569, 41.217777 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440044", "POINTID": "1102653992481", "FULLNAME": "New Era", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.121357, 41.293938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442564", "POINTID": "1102653997319", "FULLNAME": "Saint Johns", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.113578, 41.308660 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12243 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048231299", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.120147, 41.347948 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8636, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436329", "POINTID": "1102654013728", "FULLNAME": "Hollister Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.120523, 41.588660 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12544 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292441", "FULLNAME": "Roberts Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.105062, 38.815881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445053", "POINTID": "1102654021177", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.107729, 38.890336 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12535 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504189911", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.108134, 38.899481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12534 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504189911", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.108134, 38.899481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441759", "POINTID": "1102654018274", "FULLNAME": "Rand Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.103842, 38.942836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434404", "POINTID": "1102653978532", "FULLNAME": "Farmers Retreat", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.102174, 38.976447 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292098", "FULLNAME": "Pruss Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.108399, 38.977821 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434404", "POINTID": "1102653978532", "FULLNAME": "Farmers Retreat", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.102174, 38.976447 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434007", "POINTID": "1102654011549", "FULLNAME": "Eden Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.105510, 39.063390 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449799", "POINTID": "1102653997369", "FULLNAME": "Saint Marys", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.108847, 39.347829 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080703136", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.103013, 39.636152 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080703134", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.102498, 39.635223 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12444 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107612730", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.106892, 39.667908 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445541", "POINTID": "1102654001934", "FULLNAME": "Waterloo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.103016, 39.703656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434765", "POINTID": "1102654012186", "FULLNAME": "Franklin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.109126, 39.778933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436904", "POINTID": "1102653985180", "FULLNAME": "Jacksonburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.105795, 39.853101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442886", "POINTID": "1102654019219", "FULLNAME": "Salem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.109684, 40.049211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438750", "POINTID": "1102653989802", "FULLNAME": "Maxville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.105797, 40.172266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435433", "POINTID": "1102653981637", "FULLNAME": "Greene", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.099966, 40.408376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445973", "POINTID": "1102654021924", "FULLNAME": "Whiteman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.105245, 40.428376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12335 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441076", "POINTID": "1102653994866", "FULLNAME": "Phenix", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.107187, 40.581990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437963", "POINTID": "1102654014999", "FULLNAME": "Linn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.106910, 40.670046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063127944", "FULLNAME": "Ouabache State Recreation Area", "MTFCC": "C3071" }, "geometry": { "type": "Point", "coordinates": [ -85.106685, 40.722573 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444793", "POINTID": "1102654000745", "FULLNAME": "Tocsin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.109131, 40.830325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444793", "POINTID": "1102654000745", "FULLNAME": "Tocsin", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.109131, 40.830325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12303 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441561", "POINTID": "1102654018086", "FULLNAME": "Prairie View Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.110242, 40.847269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12299 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00453058", "POINTID": "1102654011583", "FULLNAME": "el Honan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.109131, 40.887546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433952", "POINTID": "1102653976987", "FULLNAME": "Eastland Gardens", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.100242, 41.019769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12280 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430196", "POINTID": "1102653965206", "FULLNAME": "Anthony Wayne Village", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.105521, 41.039492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433821", "POINTID": "1102653976580", "FULLNAME": "Dwenger Field", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.106355, 41.079491 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433821", "POINTID": "1102653976580", "FULLNAME": "Dwenger Field", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.106355, 41.079491 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292095", "FULLNAME": "Parkview Memorial Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.110644, 41.096557 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047834522", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.103244, 41.114637 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047790094", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.107699, 41.134278 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052081574", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.102198, 41.137151 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432869", "POINTID": "1102653973723", "FULLNAME": "Concordia Gardens", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.106634, 41.145604 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052061124", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.101388, 41.138254 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052081574", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.102198, 41.137151 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432869", "POINTID": "1102653973723", "FULLNAME": "Concordia Gardens", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.106634, 41.145604 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047809458", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.099899, 41.153998 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052041589", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.110204, 41.159965 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047809452", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.106288, 41.157748 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047809462", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.104706, 41.153756 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047809458", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.099899, 41.153998 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047809416", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.102804, 41.163313 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292064", "FULLNAME": "Dupont Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.107916, 41.174481 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292031", "FULLNAME": "Parkview Regional Medical Ctr", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.100878, 41.186979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047833580", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.108048, 41.193725 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292031", "FULLNAME": "Parkview Regional Medical Ctr", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -85.100878, 41.186979 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047842287", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.107608, 41.203212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052044206", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.110918, 41.210374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433038", "POINTID": "1102654010728", "FULLNAME": "County Line Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.109966, 41.527273 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451953", "POINTID": "1102654021034", "FULLNAME": "Trinity Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.109131, 41.585049 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110348059554", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.100302, 41.634642 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440852", "POINTID": "1102653994382", "FULLNAME": "Panama", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.107466, 41.706439 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12554 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105559697123", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.092478, 38.732333 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12553 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105559697779", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.090568, 38.738270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12533 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432942", "POINTID": "1102654010577", "FULLNAME": "Cooper Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.098563, 38.909782 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442570", "POINTID": "1102654018965", "FULLNAME": "Saint Johns Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.098284, 38.970335 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444991", "POINTID": "1102654021097", "FULLNAME": "Turner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.093564, 39.063390 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12513 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435955", "POINTID": "1102654013315", "FULLNAME": "Heaton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.096622, 39.086445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110116775915", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.099864, 39.197970 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439984", "POINTID": "1102653992227", "FULLNAME": "Negangards Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.094677, 39.191163 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444410", "POINTID": "1102653999907", "FULLNAME": "Sunman", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.094677, 39.236996 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441001", "POINTID": "1102653994662", "FULLNAME": "Penntown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.097456, 39.270051 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438893", "POINTID": "1102654015792", "FULLNAME": "McKenzie Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.092427, 39.466721 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434271", "POINTID": "1102653978113", "FULLNAME": "Everton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.089680, 39.562824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107616892", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.093448, 39.570369 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107616889", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.096069, 39.572920 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433995", "POINTID": "1102654011535", "FULLNAME": "Economy Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.094127, 39.983378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445137", "POINTID": "1102654001176", "FULLNAME": "Unionport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.096353, 40.120878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446295", "POINTID": "1102654022190", "FULLNAME": "Woodlawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.096630, 40.172543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12366 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441523", "POINTID": "1102653995587", "FULLNAME": "Powers", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.092464, 40.321986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444262", "POINTID": "1102654020485", "FULLNAME": "Stratton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.093577, 40.388376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12358 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444262", "POINTID": "1102654020485", "FULLNAME": "Stratton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.093577, 40.388376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445875", "POINTID": "1102654021791", "FULLNAME": "Whaley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.095522, 40.412822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441434", "POINTID": "1102653995374", "FULLNAME": "Pony", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.094688, 40.444765 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433082", "POINTID": "1102653974220", "FULLNAME": "Craigville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.090798, 40.778380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12286 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047842049", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.094637, 40.994753 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433952", "POINTID": "1102653976987", "FULLNAME": "Eastland Gardens", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.100242, 41.019769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052081475", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.098086, 41.112934 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066703", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.092188, 41.113081 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052061127", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.099446, 41.135516 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444415", "POINTID": "1102653999932", "FULLNAME": "Sunnymeadow", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.095149, 41.131213 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080838890", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.090503, 41.133385 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052061125", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.099671, 41.138441 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047809458", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.099899, 41.153998 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047809419", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.098252, 41.160577 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047809458", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.099899, 41.153998 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047809414", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.100229, 41.164063 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062790432", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.098343, 41.176175 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047756565", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.088910, 41.201902 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047756494", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.094495, 41.208667 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047756515", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.092067, 41.205004 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432260", "POINTID": "1102653971872", "FULLNAME": "Cedar Canyons", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.089133, 41.232826 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443194", "POINTID": "1102654019460", "FULLNAME": "Sedan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.099687, 41.428105 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443193", "POINTID": "1102653997976", "FULLNAME": "Sedan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.099408, 41.436437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432524", "POINTID": "1102654009915", "FULLNAME": "Circle Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.094409, 41.538382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110348059554", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.100302, 41.634642 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437529", "POINTID": "1102654014706", "FULLNAME": "Lake Gage Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.092743, 41.692827 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8638, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436820", "POINTID": "1102653985035", "FULLNAME": "Inverness", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.093577, 41.700604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449654", "POINTID": "1102653978314", "FULLNAME": "Fairview", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.080783, 38.873394 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440984", "POINTID": "1102654017752", "FULLNAME": "Pelser Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.088840, 38.890060 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446869", "POINTID": "1102653953746", "FULLNAME": "Mulford Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.081891, 39.063930 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434652", "POINTID": "1102654012088", "FULLNAME": "Forest Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.087660, 39.111122 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439411", "POINTID": "1102653991379", "FULLNAME": "Moores Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.088012, 39.113388 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442345", "POINTID": "1102653954297", "FULLNAME": "Round Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.080788, 39.158386 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110116775754", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.083165, 39.240758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110116775754", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.083165, 39.240758 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440397", "POINTID": "1102653993613", "FULLNAME": "Oak Forest", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.085236, 39.384772 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446246", "POINTID": "1102654022142", "FULLNAME": "Wolf Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.079681, 39.383661 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12407 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433994", "POINTID": "1102653977091", "FULLNAME": "Economy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.088017, 39.978101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02014068", "POINTID": "1102654008779", "FULLNAME": "Buena Vista Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.080518, 40.120043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02014068", "POINTID": "1102654008779", "FULLNAME": "Buena Vista Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.080518, 40.120043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12366 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441524", "POINTID": "1102654018072", "FULLNAME": "Powers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.087464, 40.322821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452042", "POINTID": "1102654012043", "FULLNAME": "Flesher Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.084133, 40.344488 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432837", "POINTID": "1102653973695", "FULLNAME": "Como", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.086909, 40.385322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12332 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433621", "POINTID": "1102653976013", "FULLNAME": "Domestic", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.088575, 40.611711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12322 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442080", "POINTID": "1102653996649", "FULLNAME": "Riverside", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.085244, 40.696435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12321 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449743", "POINTID": "1102654001447", "FULLNAME": "Vera Cruz", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.079136, 40.701161 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063102865", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.082950, 40.773418 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12311 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440465", "POINTID": "1102654017104", "FULLNAME": "Oakland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.086354, 40.785600 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292531", "FULLNAME": "The Lazy K Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.084798, 40.827255 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12293 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441382", "POINTID": "1102653995300", "FULLNAME": "Poe", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.086909, 40.935880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12288 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436070", "POINTID": "1102653983279", "FULLNAME": "Hessen Cassel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.079131, 40.977825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12280 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434293", "POINTID": "1102653978256", "FULLNAME": "Fairfax", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.088299, 41.041991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066624", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.086861, 41.103114 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066625", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.084959, 41.099112 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066281", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.077964, 41.101048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435430", "POINTID": "1102653981621", "FULLNAME": "Greendale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.088854, 41.113380 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052061227", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.078004, 41.115957 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047756169", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.088800, 41.127482 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052061148", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.082658, 41.126480 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080838887", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.089122, 41.132023 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080838898", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.086974, 41.133446 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015496799387", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.086885, 41.142421 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431582", "POINTID": "1102653969892", "FULLNAME": "Brookside Estates", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.079131, 41.146715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052076318", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.083924, 41.178757 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052076319", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.087666, 41.176151 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052081662", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.082449, 41.175721 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047843087", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.087853, 41.184861 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052076318", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.083924, 41.178757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015485106238", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.084616, 41.188067 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977753421", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.083497, 41.189450 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047756563", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.084997, 41.203559 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047756565", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.088910, 41.201902 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047756595", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.079254, 41.202982 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047756493", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.088674, 41.208489 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047756594", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.078085, 41.207193 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047832773", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.082336, 41.217593 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432260", "POINTID": "1102653971872", "FULLNAME": "Cedar Canyons", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.089133, 41.232826 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010947411777", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.081024, 41.258152 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010947411132", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.080035, 41.256747 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064493917", "FULLNAME": "County Home", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -85.082991, 41.381749 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436570", "POINTID": "1102653984476", "FULLNAME": "Hudson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.081075, 41.532828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292492", "FULLNAME": "Tri-State Steuben County Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.083489, 41.639698 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8639, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440012", "POINTID": "1102653992249", "FULLNAME": "Nevada Mills", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.082186, 41.726993 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12552 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110118475573", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.067200, 38.752259 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445270", "POINTID": "1102654001516", "FULLNAME": "Vevay", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.067171, 38.747839 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439699", "POINTID": "1102653991812", "FULLNAME": "Mt Sterling", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.073839, 38.795894 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12533 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449617", "POINTID": "1102653967065", "FULLNAME": "Bear Branch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.074952, 38.912835 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442799", "POINTID": "1102654019170", "FULLNAME": "Saint Peters Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.071894, 38.924225 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440920", "POINTID": "1102654017684", "FULLNAME": "Pate Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.071618, 38.939225 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12522 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443905", "POINTID": "1102654020093", "FULLNAME": "Spangler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.072452, 39.003113 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449642", "POINTID": "1102653973460", "FULLNAME": "Cold Springs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.073010, 39.071445 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430050", "POINTID": "1102654006445", "FULLNAME": "Alden Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.074678, 39.259217 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110116795512", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.072970, 39.283755 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447630", "POINTID": "1102654003436", "FULLNAME": "Yellow Bank", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.069124, 39.437550 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446850", "POINTID": "1102653955522", "FULLNAME": "Yellow Bank Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.072181, 39.456160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449036", "POINTID": "1102653995062", "FULLNAME": "Pinhook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.074402, 39.511437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439563", "POINTID": "1102654016376", "FULLNAME": "Mount Garrison Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.073013, 39.584214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445142", "POINTID": "1102654021257", "FULLNAME": "United Brethren Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.069405, 39.797823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436245", "POINTID": "1102653983859", "FULLNAME": "Hiser", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.077739, 39.815045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432762", "POINTID": "1102653973505", "FULLNAME": "College Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.070516, 39.838377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02014069", "POINTID": "1102654013971", "FULLNAME": "Huntsville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.075518, 40.070044 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436639", "POINTID": "1102653984640", "FULLNAME": "Huntsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.072184, 40.071155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12390 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431765", "POINTID": "1102653970436", "FULLNAME": "Buena Vista", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.073018, 40.120599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12388 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443915", "POINTID": "1102654020113", "FULLNAME": "Sparrow Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.075797, 40.139766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439488", "POINTID": "1102654016267", "FULLNAME": "Mosier Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.073576, 40.163932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12380 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439867", "POINTID": "1102653991949", "FULLNAME": "Mull", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.073021, 40.207265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440089", "POINTID": "1102654016760", "FULLNAME": "New Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.070242, 40.357821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432309", "POINTID": "1102653972106", "FULLNAME": "Center", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.076910, 40.445043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12332 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430042", "POINTID": "1102654006412", "FULLNAME": "Alberson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.068853, 40.612543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12321 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442567", "POINTID": "1102654018979", "FULLNAME": "Saint Johns Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.070242, 40.704489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12311 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433257", "POINTID": "1102653974821", "FULLNAME": "Curryville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.071908, 40.786435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062587384", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.073783, 41.087145 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066484", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.070285, 41.095114 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432870", "POINTID": "1102654010459", "FULLNAME": "Concordia Gardens Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.070242, 41.089215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066281", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.077964, 41.101048 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066280", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.074606, 41.099817 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066485", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.069089, 41.097434 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052073518", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.067013, 41.099637 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12272 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066533", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.069845, 41.111642 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066286", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.067136, 41.109304 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052061228", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.077465, 41.118367 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052061231", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.069920, 41.114255 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066532", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.067522, 41.112329 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052061184", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.078232, 41.125583 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442373", "POINTID": "1102653997146", "FULLNAME": "Royal Oaks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.074686, 41.126714 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052061190", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.073195, 41.123211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047841409", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.073745, 41.144382 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047841340", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.069939, 41.144299 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047817565", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.068887, 41.151803 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444414", "POINTID": "1102653999923", "FULLNAME": "Sunnybrook Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.071910, 41.156159 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052076362", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.068901, 41.177039 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052077374", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.076451, 41.186343 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052077367", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.071983, 41.186406 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052077375", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.067120, 41.183604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104493280728", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.076569, 41.190217 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052077428", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.068901, 41.190693 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047756594", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.078085, 41.207193 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432291", "POINTID": "1102653971956", "FULLNAME": "Cedar Shores", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.072189, 41.227549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475859230", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.075150, 41.259122 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504191625", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.068756, 41.260545 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12253 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504211597", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.071741, 41.265009 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475859251", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.066946, 41.261977 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12230 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432285", "POINTID": "1102654009561", "FULLNAME": "Cedar Lake Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.069963, 41.453661 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110348057669", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.074525, 41.528437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110348050715", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.077192, 41.674913 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110348060042", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.070473, 41.717388 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12552 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110118475573", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.067200, 38.752259 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445270", "POINTID": "1102654001516", "FULLNAME": "Vevay", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.067171, 38.747839 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439572", "POINTID": "1102654016395", "FULLNAME": "Mount Hebron Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.061619, 38.949781 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262943067", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.063539, 39.018640 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440460", "POINTID": "1102654017101", "FULLNAME": "Oakdale Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.061632, 39.023949 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446177", "POINTID": "1102654022065", "FULLNAME": "Windsor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.057729, 39.042557 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445054", "POINTID": "1102654021178", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.060787, 39.075889 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105812048", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.065741, 39.118830 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449804", "POINTID": "1102654003557", "FULLNAME": "Youngs Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.057456, 39.354217 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12464 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431201", "POINTID": "1102653968467", "FULLNAME": "Blooming Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.064679, 39.502269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441168", "POINTID": "1102653995063", "FULLNAME": "Pinhook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.057182, 39.815601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436427", "POINTID": "1102653984260", "FULLNAME": "Hoover Mill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.064406, 39.863933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12366 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450920", "POINTID": "1102654012064", "FULLNAME": "Flower Point Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.060243, 40.328099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12362 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440088", "POINTID": "1102653992712", "FULLNAME": "New Mount Pleasant", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.064966, 40.355875 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12357 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431159", "POINTID": "1102653968306", "FULLNAME": "Blaine", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.056077, 40.402543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432972", "POINTID": "1102653973856", "FULLNAME": "Corkwell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.058577, 40.467266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12325 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434827", "POINTID": "1102654012236", "FULLNAME": "French Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.056630, 40.672267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12324 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434827", "POINTID": "1102654012236", "FULLNAME": "French Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.056630, 40.672267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12307 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443245", "POINTID": "1102654019507", "FULLNAME": "Shady Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.066353, 40.815880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12294 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430884", "POINTID": "1102654007479", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.062187, 40.925047 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444417", "POINTID": "1102653999964", "FULLNAME": "Sunnymede Woods", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.066077, 41.065326 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052035963", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.058027, 41.070986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052035964", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.059446, 41.071326 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052035963", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.058027, 41.070986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066482", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.063738, 41.095516 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052073487", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.060707, 41.095674 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052073469", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.057711, 41.091647 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066277", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.066908, 41.104304 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066274", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.061230, 41.104193 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052073497", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.060645, 41.096551 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12272 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066283", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.067211, 41.107722 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066531", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.064993, 41.111600 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066172", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.056126, 41.111667 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052061299", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.066814, 41.118826 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438587", "POINTID": "1102653989341", "FULLNAME": "Maplewood Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.056354, 41.115603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435155", "POINTID": "1102653981032", "FULLNAME": "Golden Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.061908, 41.126714 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449430", "POINTID": "1102653961381", "FULLNAME": "Northwood Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.063853, 41.122269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047841597", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.066594, 41.136720 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052068998", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.057939, 41.133365 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052070327", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.064733, 41.145034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052070126", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.067235, 41.147085 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047817600", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.064534, 41.153659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047811480", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.066396, 41.157276 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047817705", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.059368, 41.156421 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052076904", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.064145, 41.176849 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052076907", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.061273, 41.177689 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052077365", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.066433, 41.186771 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052077366", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.067321, 41.187463 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052077437", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.066718, 41.190974 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080846300", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.062418, 41.188442 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052077365", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.066433, 41.186771 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292053", "FULLNAME": "Stettler Strip", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.062329, 41.209986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813325038", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.067254, 41.261066 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12253 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475859251", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.066946, 41.261977 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292136", "FULLNAME": "de Kalb County Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.064357, 41.307165 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430334", "POINTID": "1102653965974", "FULLNAME": "Auburn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.058853, 41.366994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107061468019", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.056764, 41.378702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052099109", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.059462, 41.389819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444558", "POINTID": "1102654020767", "FULLNAME": "Tamarack Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.062187, 41.406716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430312", "POINTID": "1102653965821", "FULLNAME": "Ashley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.065519, 41.527273 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451954", "POINTID": "1102654016568", "FULLNAME": "Mount Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.063574, 41.595050 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8641, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451879", "POINTID": "1102653963840", "FULLNAME": "Yogi Bear Jellystone Park Campgrounds", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.056630, 41.748939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436905", "POINTID": "1102653985202", "FULLNAME": "Jacksonville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.048838, 38.828950 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432851", "POINTID": "1102654010395", "FULLNAME": "Concord Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.047175, 39.053945 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432459", "POINTID": "1102653972613", "FULLNAME": "Chesterville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.052175, 39.067834 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430661", "POINTID": "1102654007195", "FULLNAME": "Beatty Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.053564, 39.077278 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438909", "POINTID": "1102654015813", "FULLNAME": "McKinstry Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.049675, 39.095055 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105812700", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.051531, 39.102085 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432513", "POINTID": "1102654009884", "FULLNAME": "Churchill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.046065, 39.104222 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430701", "POINTID": "1102654007261", "FULLNAME": "Bedunnah Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.054122, 39.109499 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443917", "POINTID": "1102653999048", "FULLNAME": "Sparta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.045233, 39.105334 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438908", "POINTID": "1102654015814", "FULLNAME": "McKinstry Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.048009, 39.120888 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449744", "POINTID": "1102654002162", "FULLNAME": "Weisburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.046065, 39.218109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433971", "POINTID": "1102654011522", "FULLNAME": "Ebenezer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.046346, 39.468939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430116", "POINTID": "1102653964689", "FULLNAME": "Alquina", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.054688, 39.612828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438443", "POINTID": "1102653988904", "FULLNAME": "Lyonsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.053848, 39.652547 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444008", "POINTID": "1102653999262", "FULLNAME": "Springersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.053848, 39.657268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107612621", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.046268, 39.701813 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292537", "FULLNAME": "Squires Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.047572, 39.717809 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435451", "POINTID": "1102654012886", "FULLNAME": "Greens Fork Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.045238, 39.887266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430637", "POINTID": "1102654007165", "FULLNAME": "Bear Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.049130, 40.222266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12357 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431159", "POINTID": "1102653968306", "FULLNAME": "Blaine", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.056077, 40.402543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12346 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437370", "POINTID": "1102653986253", "FULLNAME": "Kitt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.047465, 40.496156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12341 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441405", "POINTID": "1102653995345", "FULLNAME": "Poling", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.053298, 40.532544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438474", "POINTID": "1102653988995", "FULLNAME": "Magley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.053298, 40.831435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12303 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442893", "POINTID": "1102654019233", "FULLNAME": "Salem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.049409, 40.853380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12298 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292021", "FULLNAME": "Blomenberg Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.047854, 40.895588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12292 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446651", "POINTID": "1102653990524", "FULLNAME": "Middletown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.048854, 40.943103 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047818050", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.053985, 41.052700 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052036164", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.047655, 41.060137 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062797412", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.046555, 41.056838 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442071", "POINTID": "1102653996620", "FULLNAME": "River Haven", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.054130, 41.077548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052073453", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.053886, 41.093899 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452260", "POINTID": "1102653958156", "FULLNAME": "Georgetown Square", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.049964, 41.100603 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052073447", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.048293, 41.097438 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052073448", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.053119, 41.095777 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12272 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066172", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.056126, 41.111667 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438587", "POINTID": "1102653989341", "FULLNAME": "Maplewood Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.056354, 41.115603 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047759492", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.049793, 41.115203 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066111", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.045252, 41.112348 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066769", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.054157, 41.128359 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066771", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.049830, 41.128629 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047850898", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.051979, 41.134619 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066794", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.050426, 41.129504 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052065546", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.045142, 41.137066 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047850903", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.045032, 41.131116 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047820782", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.052612, 41.145695 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047820779", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.047033, 41.145646 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047820783", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.053722, 41.143877 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047821022", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.049463, 41.144564 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052064647", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.052832, 41.152861 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047820778", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.048484, 41.148139 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814405901", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.050756, 41.166486 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080846225", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.056160, 41.184088 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12242 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446292", "POINTID": "1102654022195", "FULLNAME": "Woodlawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.050796, 41.354772 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12240 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064435634", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.051300, 41.371636 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064435627", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.046247, 41.374130 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452282", "POINTID": "1102653955823", "FULLNAME": "Auburn Golf Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.051139, 41.380870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052099108", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.055203, 41.391542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292479", "FULLNAME": "Strebig Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.045263, 41.694936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437533", "POINTID": "1102653986835", "FULLNAME": "Lake James", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.048296, 41.705050 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12519 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433559", "POINTID": "1102653975868", "FULLNAME": "Dillsboro Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.038562, 39.030613 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444856", "POINTID": "1102654021002", "FULLNAME": "Transier Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.041620, 39.040613 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440527", "POINTID": "1102654017148", "FULLNAME": "Olcott Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.037452, 39.055888 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445967", "POINTID": "1102654021897", "FULLNAME": "Whiteford Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.035231, 39.091723 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443917", "POINTID": "1102653999048", "FULLNAME": "Sparta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.045233, 39.105334 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436562", "POINTID": "1102653984441", "FULLNAME": "Hubbells Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.039954, 39.234497 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12490 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437677", "POINTID": "1102653987432", "FULLNAME": "Lawrenceville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.039399, 39.277829 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431380", "POINTID": "1102653951038", "FULLNAME": "Boundary Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.035513, 39.443381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441397", "POINTID": "1102654017997", "FULLNAME": "Polar Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.044681, 39.561990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443531", "POINTID": "1102654019844", "FULLNAME": "Simpson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.044402, 39.656157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435451", "POINTID": "1102654012886", "FULLNAME": "Greens Fork Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.045238, 39.887266 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435450", "POINTID": "1102653981676", "FULLNAME": "Greens Fork", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.041784, 39.892563 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434295", "POINTID": "1102654011781", "FULLNAME": "Fairfield Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.034405, 39.903656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432134", "POINTID": "1102653971549", "FULLNAME": "Carlos", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.034405, 40.026433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445678", "POINTID": "1102654021654", "FULLNAME": "Wentz Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.039965, 40.345876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442455", "POINTID": "1102654018832", "FULLNAME": "Sager Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.039689, 40.423933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445900", "POINTID": "1102654021824", "FULLNAME": "Whicker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.034410, 40.467543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441035", "POINTID": "1102653994788", "FULLNAME": "Perryville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.040520, 40.591154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431596", "POINTID": "1102654008579", "FULLNAME": "Brown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.041352, 40.602822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12329 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435465", "POINTID": "1102654012912", "FULLNAME": "Greenwood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.040797, 40.635878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12280 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475918755", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.036073, 41.045434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047817969", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.040939, 41.052493 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047775624", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.037962, 41.047083 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438943", "POINTID": "1102653990087", "FULLNAME": "Meadowbrook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.039131, 41.060325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052035746", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.043790, 41.067769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047759795", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.038659, 41.095985 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052073437", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.040904, 41.094269 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047759788", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.038418, 41.092894 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052073420", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.043557, 41.099696 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052073417", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.038182, 41.100151 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12272 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066052", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.037610, 41.112535 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066111", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.045252, 41.112348 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066109", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.045338, 41.106988 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066110", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.043018, 41.110670 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062798325", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.044648, 41.117949 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052062181", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.035794, 41.120339 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066111", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.045252, 41.112348 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052065675", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.040311, 41.127791 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052065676", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.041776, 41.122582 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052065595", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.035483, 41.137431 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052071568", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.037036, 41.133987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052062260", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.041376, 41.144687 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052062258", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.041837, 41.148561 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052062229", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.038503, 41.149296 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015483520826", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.034850, 41.225368 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010947280741", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.035373, 41.328331 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12243 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104762157803", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.034789, 41.349149 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12242 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064435703", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.039836, 41.360331 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064435714", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.044450, 41.359620 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064435730", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.038613, 41.358366 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475987769", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.036285, 41.353542 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064435741", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.034099, 41.358555 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064435709", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.044758, 41.361845 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064435696", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.038927, 41.363995 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12240 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064435690", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.034901, 41.374568 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010947334485", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.042090, 41.384849 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262909388", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.040802, 41.379115 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262909513", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.037975, 41.379423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064438735", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.044241, 41.391576 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475947493", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.040268, 41.389509 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475947483", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.036494, 41.388467 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110348048786", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.043785, 41.637819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452033", "POINTID": "1102653974537", "FULLNAME": "Crooked Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.036629, 41.679771 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292479", "FULLNAME": "Strebig Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.045263, 41.694936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436934", "POINTID": "1102654014204", "FULLNAME": "Jamestown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.038294, 41.744773 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12542 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449635", "POINTID": "1102653972123", "FULLNAME": "Ctr Square", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.031337, 38.836448 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292092", "FULLNAME": "Josephs Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.034279, 39.056376 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441813", "POINTID": "1102654018311", "FULLNAME": "Record Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.027453, 39.058667 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442794", "POINTID": "1102653997401", "FULLNAME": "Saint Peter", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.031624, 39.321718 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12479 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445179", "POINTID": "1102654021278", "FULLNAME": "Usher Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.031624, 39.372273 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452416", "POINTID": "1102653963773", "FULLNAME": "Winchester Speedway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.027463, 40.175322 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110951549728", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.031412, 40.286278 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442090", "POINTID": "1102654018590", "FULLNAME": "Riverside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.023853, 40.286710 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445269", "POINTID": "1102654021335", "FULLNAME": "Veterans Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.030242, 40.288653 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12361 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431364", "POINTID": "1102654008098", "FULLNAME": "Bost Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.028021, 40.364210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437346", "POINTID": "1102654014579", "FULLNAME": "Kinsey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.028021, 40.424766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12328 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437965", "POINTID": "1102653988145", "FULLNAME": "Linn Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.033021, 40.645045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12324 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439482", "POINTID": "1102654016257", "FULLNAME": "Moser Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.023298, 40.674212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446445", "POINTID": "1102654022403", "FULLNAME": "Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.033297, 40.751156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12314 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436378", "POINTID": "1102653984140", "FULLNAME": "Honduras", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.033021, 40.758101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12313 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442664", "POINTID": "1102654019045", "FULLNAME": "Saint Lukes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.033574, 40.766435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12280 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047831509", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.023311, 41.045778 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047831511", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.024486, 41.050707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047759792", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.033013, 41.095714 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010952265395", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.024749, 41.095702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047759533", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.024690, 41.096252 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12272 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066044", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.033885, 41.112192 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774494", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.024135, 41.109021 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052075302", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.033482, 41.118747 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052075312", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.028601, 41.120099 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047827565", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.023049, 41.115278 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052065667", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.034268, 41.126573 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052065668", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.033407, 41.127252 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052065662", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.027115, 41.128462 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052066838", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.033321, 41.135082 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052067028", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.025894, 41.134268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052065596", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.034311, 41.137698 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104482271613", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.029438, 41.145630 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052062263", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.033171, 41.142158 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104482271606", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.027222, 41.141568 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104482271637", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.023121, 41.139942 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104482271613", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.029438, 41.145630 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104482271630", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.027729, 41.149032 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104482600073", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.023132, 41.152049 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052062347", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.024355, 41.160745 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052062344", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.023998, 41.155718 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052064306", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.023467, 41.163291 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052067426", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.033455, 41.186928 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052067426", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.033455, 41.186928 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047842087", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.025272, 41.195156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047842087", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.025272, 41.195156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102232830540", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.032517, 41.217072 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062795898", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.024974, 41.219185 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015483506259", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.032825, 41.227682 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062609778", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.032635, 41.222070 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052025739", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.025433, 41.225154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443074", "POINTID": "1102654019360", "FULLNAME": "Schlatter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.028853, 41.237826 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064436696", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.024990, 41.325395 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12245 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504201941", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.032970, 41.328984 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064435556", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.025165, 41.327725 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12243 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475948600", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.033241, 41.351124 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12242 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064435741", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.034099, 41.358555 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019626213286", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.033662, 41.365994 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262911265", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.033469, 41.362457 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12240 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104762186781", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.025138, 41.374204 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12239 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475989586", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.032452, 41.381325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12238 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096995233", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.026659, 41.385396 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064438355", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.025945, 41.419705 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444393", "POINTID": "1102653999829", "FULLNAME": "Summit", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.026074, 41.513107 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439385", "POINTID": "1102653991330", "FULLNAME": "Moonlight", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.031074, 41.584494 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433140", "POINTID": "1102654010892", "FULLNAME": "Crockett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.029684, 41.637551 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110348063850", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.031999, 41.670634 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052070675", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.029389, 41.738721 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430098", "POINTID": "1102653964581", "FULLNAME": "Allensville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.020227, 38.873114 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12537 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430099", "POINTID": "1102654006577", "FULLNAME": "Allensville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.020227, 38.879781 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12530 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433671", "POINTID": "1102654011416", "FULLNAME": "Downey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.019672, 38.940614 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439256", "POINTID": "1102653990885", "FULLNAME": "Milton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.014396, 38.978392 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438378", "POINTID": "1102654015269", "FULLNAME": "Lowes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.015509, 39.104501 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438378", "POINTID": "1102654015269", "FULLNAME": "Lowes Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.015509, 39.104501 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438509", "POINTID": "1102653989134", "FULLNAME": "Manchester", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.012175, 39.151720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438551", "POINTID": "1102654015410", "FULLNAME": "Maple Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.021622, 39.421715 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431586", "POINTID": "1102653969914", "FULLNAME": "Brookville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.012733, 39.423106 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012812686028", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.020525, 39.460020 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12438 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441093", "POINTID": "1102653994895", "FULLNAME": "Philomath", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.015790, 39.723934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441093", "POINTID": "1102653994895", "FULLNAME": "Philomath", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.015790, 39.723934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452207", "POINTID": "1102654002326", "FULLNAME": "West Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.013849, 39.846434 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440507", "POINTID": "1102654017139", "FULLNAME": "Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.013578, 40.287821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12370 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440507", "POINTID": "1102654017139", "FULLNAME": "Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.013578, 40.287821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435950", "POINTID": "1102654013309", "FULLNAME": "Hearne Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.015243, 40.438933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435825", "POINTID": "1102654013208", "FULLNAME": "Hartford Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.021632, 40.593100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12326 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430749", "POINTID": "1102654007318", "FULLNAME": "Beibersteine Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.013296, 40.660046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12324 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439482", "POINTID": "1102654016257", "FULLNAME": "Moser Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.023298, 40.674212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12308 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441058", "POINTID": "1102653994835", "FULLNAME": "Peterson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.014685, 40.813101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441572", "POINTID": "1102653995670", "FULLNAME": "Preble", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.014685, 40.832267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12280 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047831509", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.023311, 41.045778 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080839313", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.020943, 41.045632 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047831515", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.017250, 41.043245 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062798522", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.022206, 41.054407 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062797284", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.021115, 41.055093 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062798522", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.022206, 41.054407 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449699", "POINTID": "1102653992555", "FULLNAME": "New Haven", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.014409, 41.070604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12274 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047759534", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.022357, 41.094020 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431398", "POINTID": "1102654008158", "FULLNAME": "Bowers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.021909, 41.120048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104482271636", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.022477, 41.136886 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104975878930", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.016963, 41.129625 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104482596573", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.022163, 41.143687 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104482596714", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.016193, 41.145103 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104482273017", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.016134, 41.137203 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104482600079", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.021981, 41.152873 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052062345", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.022944, 41.156375 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052062348", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.013119, 41.159139 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12265 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052064324", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.021276, 41.164567 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052064406", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.015160, 41.164987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047810251", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.020321, 41.183174 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102232243197", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.021525, 41.211851 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102232210991", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.021010, 41.217012 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01681810", "POINTID": "1102653987630", "FULLNAME": "Leo-Cedarville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.016630, 41.212549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052025737", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.021222, 41.227089 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062794739", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.022370, 41.221487 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102248976526", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.018049, 41.232705 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052030933", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.016869, 41.231805 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12251 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436444", "POINTID": "1102653984319", "FULLNAME": "Hopewell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.020519, 41.281161 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048253581", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.018172, 41.422343 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11064438015", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.016496, 41.425517 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444135", "POINTID": "1102653999492", "FULLNAME": "Steubenville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.022740, 41.532272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441288", "POINTID": "1102653995196", "FULLNAME": "Pleasant Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.016072, 41.575328 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438725", "POINTID": "1102654015580", "FULLNAME": "Matson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.017740, 41.591718 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452352", "POINTID": "1102653959899", "FULLNAME": "Lake James Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.014127, 41.681162 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452352", "POINTID": "1102653959899", "FULLNAME": "Lake James Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.014127, 41.681162 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435103", "POINTID": "1102653980826", "FULLNAME": "Glen Eden", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.017185, 41.691161 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441497", "POINTID": "1102653995515", "FULLNAME": "Potawatomi Inn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.022461, 41.703938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436933", "POINTID": "1102653985255", "FULLNAME": "Jamestown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.017461, 41.748383 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431213", "POINTID": "1102653968544", "FULLNAME": "Blue", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.004670, 38.925060 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432845", "POINTID": "1102654010374", "FULLNAME": "Conaway Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.004673, 38.982837 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105812627", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.003372, 39.038799 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432122", "POINTID": "1102654009274", "FULLNAME": "Carbaugh Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.003286, 39.058390 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438511", "POINTID": "1102654015392", "FULLNAME": "Manchester Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.008009, 39.146167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438509", "POINTID": "1102653989134", "FULLNAME": "Manchester", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.012175, 39.151720 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452231", "POINTID": "1102653958663", "FULLNAME": "Harmans Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.007175, 39.195054 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440015", "POINTID": "1102653992277", "FULLNAME": "New Alsace", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.003010, 39.233942 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436158", "POINTID": "1102653983559", "FULLNAME": "Highland Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.003844, 39.321718 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449792", "POINTID": "1102653986292", "FULLNAME": "Klemmes Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.003565, 39.353939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12479 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440457", "POINTID": "1102653993653", "FULLNAME": "Oak Tree Xroad", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.003010, 39.372273 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444102", "POINTID": "1102653999424", "FULLNAME": "Stavetown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.009957, 39.410882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444102", "POINTID": "1102653999424", "FULLNAME": "Stavetown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.009957, 39.410882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012812687802", "MTFCC": "C3075" }, "geometry": { "type": "Point", "coordinates": [ -85.009755, 39.432820 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442735", "POINTID": "1102654019097", "FULLNAME": "Saint Michaels Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.008567, 39.430326 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12455 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452138", "POINTID": "1102653962132", "FULLNAME": "Quakertown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.001626, 39.580048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431648", "POINTID": "1102653970077", "FULLNAME": "Brownsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.004683, 39.664488 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691911176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.004426, 39.826031 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119445268", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.002377, 39.848621 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12410 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446083", "POINTID": "1102654022037", "FULLNAME": "Williamsburg Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.003570, 39.954766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12377 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444195", "POINTID": "1102653999573", "FULLNAME": "Stone", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.004410, 40.236709 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441849", "POINTID": "1102654018355", "FULLNAME": "Reed Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.006354, 40.417821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12291 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430203", "POINTID": "1102654006675", "FULLNAME": "Antioch Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.007462, 40.947824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12280 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047832048", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.007720, 41.045632 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12279 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047773297", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.009898, 41.054114 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12278 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047827494", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.007653, 41.059989 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047827492", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.005314, 41.057447 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442560", "POINTID": "1102654018941", "FULLNAME": "Saint John Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.007186, 41.076715 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062797657", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.001819, 41.078302 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12271 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444749", "POINTID": "1102654000599", "FULLNAME": "Thurman", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.004131, 41.120046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104493279830", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.004439, 41.133377 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089198484", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.004324, 41.130587 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12267 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052062293", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.011917, 41.152269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052064475", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.011579, 41.161942 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12243 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292108", "FULLNAME": "Mooney Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.006220, 41.347763 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12223 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451955", "POINTID": "1102654007011", "FULLNAME": "Barkers Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.008294, 41.513107 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451956", "POINTID": "1102654017932", "FULLNAME": "Pleasant Lake Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.009128, 41.575328 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451964", "POINTID": "1102653961062", "FULLNAME": "Myers Bait and Fish Hatchery", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.006628, 41.577550 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110348334334", "FULLNAME": "Tri-State Univ", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.010281, 41.630981 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451888", "POINTID": "1102654017225", "FULLNAME": "Old Circle Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.001905, 41.642829 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110348052075", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.008567, 41.688227 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12199 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451877", "POINTID": "1102653961400", "FULLNAME": "Oak Hill Camp", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.001905, 41.706994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451878", "POINTID": "1102654001321", "FULLNAME": "Valley Outlet Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.003015, 41.728661 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444250", "POINTID": "1102654020475", "FULLNAME": "Stow Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.000226, 38.847838 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12513 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439695", "POINTID": "1102653991807", "FULLNAME": "Mt Sinai", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.998563, 39.080613 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442763", "POINTID": "1102654019140", "FULLNAME": "Saint Pauls Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.000786, 39.234775 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445633", "POINTID": "1102653955345", "FULLNAME": "Wee Wee Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.997176, 39.343939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108936387", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.991573, 39.440295 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430583", "POINTID": "1102653950838", "FULLNAME": "Battle Pt", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.995789, 39.464493 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433790", "POINTID": "1102653976468", "FULLNAME": "Dunlapsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.993593, 39.590895 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446309", "POINTID": "1102654022223", "FULLNAME": "Woods Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.991347, 39.706991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12437 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119453693", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.998088, 39.732666 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119453693", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.998088, 39.732666 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103747571609", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.998726, 39.823977 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432346", "POINTID": "1102653972190", "FULLNAME": "Centerville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.996347, 39.817822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119687009", "FULLNAME": "Old Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.992627, 39.875379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449748", "POINTID": "1102654002946", "FULLNAME": "Williamsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.996350, 39.950878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12402 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431205", "POINTID": "1102653968502", "FULLNAME": "Bloomingport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.994684, 40.026988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441889", "POINTID": "1102654018388", "FULLNAME": "Reitenour Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.993853, 40.279208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437664", "POINTID": "1102654014849", "FULLNAME": "Lawn Dale Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.996076, 40.283098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12363 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437476", "POINTID": "1102654014676", "FULLNAME": "Kunce Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.999131, 40.346988 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12360 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432778", "POINTID": "1102653973593", "FULLNAME": "Collett", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.000797, 40.375321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111671148", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.996666, 40.411819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111657989", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.991817, 40.419831 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435410", "POINTID": "1102654012851", "FULLNAME": "Green Park Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.994132, 40.423933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111671025", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.999456, 40.437406 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111670962", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.998860, 40.434401 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12341 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447593", "POINTID": "1102654002375", "FULLNAME": "West Liberty", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.996076, 40.533376 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435359", "POINTID": "1102654012805", "FULLNAME": "Gravel Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.992742, 40.533101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12326 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436416", "POINTID": "1102654013767", "FULLNAME": "Hoosier Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.994408, 40.656711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12297 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504291988", "FULLNAME": "Holt Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.998686, 40.898923 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12291 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452451", "POINTID": "1102653983922", "FULLNAME": "Hoagland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.991629, 40.947824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12285 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292144", "FULLNAME": "Valhalla Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.992887, 41.001375 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062893603", "FULLNAME": "Apostolic Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -84.990068, 41.216879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12258 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010952322643", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.992976, 41.222423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12250 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445553", "POINTID": "1102654021571", "FULLNAME": "Watson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.991629, 41.288938 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438420", "POINTID": "1102654015339", "FULLNAME": "Lutz Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.995795, 41.440883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430179", "POINTID": "1102653965090", "FULLNAME": "Angola", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.999405, 41.634772 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046625933", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.991736, 41.639433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472653736", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.997047, 41.644065 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052203438", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.995612, 41.663525 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443902", "POINTID": "1102654020092", "FULLNAME": "Sowles Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.999405, 41.669494 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8647, "y": 12203 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103691914569", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.990572, 41.673916 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438623", "POINTID": "1102653989493", "FULLNAME": "Markland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.986613, 38.782006 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504187954", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.989414, 38.855707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433879", "POINTID": "1102653976776", "FULLNAME": "East Enterprise", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.988003, 38.872839 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431386", "POINTID": "1102654008140", "FULLNAME": "Bovard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.988003, 38.887839 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12534 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00429985", "POINTID": "1102653963887", "FULLNAME": "Aberdeen", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.987450, 38.905338 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437483", "POINTID": "1102653986631", "FULLNAME": "Kyle", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.988287, 39.138389 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262931953", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.986863, 39.133955 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12491 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015707510346", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.981802, 39.272259 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12471 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431312", "POINTID": "1102653951018", "FULLNAME": "Bon Well Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.989676, 39.440048 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12466 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444674", "POINTID": "1102653954946", "FULLNAME": "The Mounds", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.987456, 39.486437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446362", "POINTID": "1102654003397", "FULLNAME": "Yankee Town", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.985514, 39.695601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015496757628", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.982708, 39.791700 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015496757628", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.982708, 39.791700 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119442910", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.986120, 39.820780 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110955263275", "FULLNAME": "Winchester Golf Course", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -84.984701, 40.159562 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110955263277", "FULLNAME": "Randolph Co Courthouse", "MTFCC": "K2165" }, "geometry": { "type": "Point", "coordinates": [ -84.982158, 40.171932 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111671157", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.983405, 40.413643 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111671157", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.983405, 40.413643 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12354 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111671062", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.988078, 40.425581 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436941", "POINTID": "1102654014212", "FULLNAME": "Jaque Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.983717, 40.426987 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12352 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475928291", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.988126, 40.445277 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111800789", "FULLNAME": "Hospital", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -84.984551, 40.441121 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12351 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292292", "FULLNAME": "Portland Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.989022, 40.451580 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441291", "POINTID": "1102653995221", "FULLNAME": "Pleasant Ridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.979409, 40.482821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12343 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441166", "POINTID": "1102654017854", "FULLNAME": "Pingrey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.988298, 40.519490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12292 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062787465", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.986699, 40.946231 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12291 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062787473", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.985020, 40.946633 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12277 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047819815", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.987751, 41.068386 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434171", "POINTID": "1102654011657", "FULLNAME": "Emmanuel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.986906, 41.078658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12262 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446360", "POINTID": "1102654022304", "FULLNAME": "Yaggy Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.979685, 41.195049 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446360", "POINTID": "1102654022304", "FULLNAME": "Yaggy Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.979685, 41.195049 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015482744938", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.989022, 41.210828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062893603", "FULLNAME": "Apostolic Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -84.990068, 41.216879 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504140716", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.988947, 41.212343 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441992", "POINTID": "1102654018534", "FULLNAME": "Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.986629, 41.426161 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292112", "FULLNAME": "Walker/rowe Waterloo Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.981627, 41.431160 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441992", "POINTID": "1102654018534", "FULLNAME": "Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.986629, 41.426161 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432526", "POINTID": "1102654009924", "FULLNAME": "Circle Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.988016, 41.630328 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110348050453", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.983518, 41.625901 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110348057811", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.986898, 41.638451 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12207 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110348055712", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.989049, 41.642760 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12206 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045867071", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.984336, 41.650914 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105814344", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.971043, 39.025252 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262932453", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.969050, 39.152708 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262932282", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.968857, 39.148796 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431321", "POINTID": "1102653968823", "FULLNAME": "Bonnell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.974165, 39.168427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443816", "POINTID": "1102654020021", "FULLNAME": "South Gate Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.970233, 39.321718 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438264", "POINTID": "1102653953196", "FULLNAME": "Long Hollow Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.977454, 39.359495 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439513", "POINTID": "1102653991561", "FULLNAME": "Mound Haven", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.978288, 39.383939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449609", "POINTID": "1102653961607", "FULLNAME": "Orschell Overlook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.978425, 39.470827 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440045", "POINTID": "1102653992492", "FULLNAME": "New Fairfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.972457, 39.506992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103689196835", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.968975, 39.644610 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12440 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452217", "POINTID": "1102653984300", "FULLNAME": "Hopeville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.970515, 39.701433 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438210", "POINTID": "1102654015158", "FULLNAME": "Locust Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.973570, 39.741155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440549", "POINTID": "1102654017210", "FULLNAME": "Old Center Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.974128, 39.991712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432443", "POINTID": "1102654009768", "FULLNAME": "Cherry Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.969407, 40.036156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432443", "POINTID": "1102654009768", "FULLNAME": "Cherry Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.969407, 40.036156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110955263281", "FULLNAME": "Baker Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -84.975839, 40.166390 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110955263276", "FULLNAME": "Hospital", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -84.972679, 40.169429 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12373 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441763", "POINTID": "1102653996045", "FULLNAME": "Randolph", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.975799, 40.266154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12372 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433436", "POINTID": "1102653975426", "FULLNAME": "Deerfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.976354, 40.278654 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431262", "POINTID": "1102653968656", "FULLNAME": "Bluff Pt", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.977185, 40.345878 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12356 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432765", "POINTID": "1102653973525", "FULLNAME": "College Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.977185, 40.410878 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437814", "POINTID": "1102654014954", "FULLNAME": "Liber Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.970520, 40.410320 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437813", "POINTID": "1102653987863", "FULLNAME": "Liber", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.969407, 40.408098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441471", "POINTID": "1102653995487", "FULLNAME": "Portland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.977741, 40.434489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441291", "POINTID": "1102653995221", "FULLNAME": "Pleasant Ridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.979409, 40.482821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430219", "POINTID": "1102653965334", "FULLNAME": "Antiville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.978575, 40.497543 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12344 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431198", "POINTID": "1102653968455", "FULLNAME": "Bloomfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.973851, 40.511711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445841", "POINTID": "1102654021753", "FULLNAME": "Westlawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.972741, 40.591990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12328 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475839530", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.970984, 40.646779 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12327 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475838406", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.977821, 40.651858 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046987716", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.971448, 40.655173 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053311870", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.973479, 40.650995 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12323 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438775", "POINTID": "1102654015622", "FULLNAME": "Mazelin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.970520, 40.686711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12284 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438581", "POINTID": "1102653989297", "FULLNAME": "Maples", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.969128, 41.012825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452370", "POINTID": "1102653961114", "FULLNAME": "New Haven Conservation Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.971628, 41.101159 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052026847", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.968913, 41.215957 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12255 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436653", "POINTID": "1102653984676", "FULLNAME": "Hursh", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.974128, 41.248104 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12248 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430638", "POINTID": "1102654007167", "FULLNAME": "Bear Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.973017, 41.307550 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433008", "POINTID": "1102654010699", "FULLNAME": "Cosper Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.976072, 41.363105 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432183", "POINTID": "1102654009418", "FULLNAME": "Carter Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.969125, 41.557550 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8649, "y": 12205 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437442", "POINTID": "1102654014650", "FULLNAME": "Kope Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.970416, 41.663124 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432741", "POINTID": "1102653973433", "FULLNAME": "Cofield Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.958560, 38.952837 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105830868", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.965365, 39.057944 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449749", "POINTID": "1102654003354", "FULLNAME": "Wrights Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.957176, 39.135611 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446407", "POINTID": "1102654003513", "FULLNAME": "Yorkville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.967452, 39.204497 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12488 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442659", "POINTID": "1102653997335", "FULLNAME": "Saint Leon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.957965, 39.291996 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443817", "POINTID": "1102653954752", "FULLNAME": "South Gate Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.958287, 39.337550 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434966", "POINTID": "1102653952112", "FULLNAME": "Garr Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.957884, 39.472606 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440533", "POINTID": "1102654017159", "FULLNAME": "Old Bath Springs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.958566, 39.530882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12436 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00429988", "POINTID": "1102653963909", "FULLNAME": "Abington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.963013, 39.733101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119464937", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.961036, 39.818184 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449733", "POINTID": "1102653998719", "FULLNAME": "Snow Hl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.963018, 40.091989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442395", "POINTID": "1102653997217", "FULLNAME": "Rural", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.966073, 40.106712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102323004273", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.962583, 40.173354 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12341 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431698", "POINTID": "1102653970205", "FULLNAME": "Bryant", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.963898, 40.533370 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12337 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431357", "POINTID": "1102654008079", "FULLNAME": "Borris Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.960518, 40.569767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435014", "POINTID": "1102653980494", "FULLNAME": "Geneva", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.957184, 40.591990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053406293", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.962664, 40.599462 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12332 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053313221", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.958823, 40.605966 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12331 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444290", "POINTID": "1102654020515", "FULLNAME": "Studebaker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.966907, 40.614211 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12327 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011216930429", "MTFCC": "C3071" }, "geometry": { "type": "Point", "coordinates": [ -84.966851, 40.648069 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12326 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046987738", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.963267, 40.660184 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02063235", "POINTID": "1102654018301", "FULLNAME": "Ray Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.965797, 40.743935 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12307 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475868442", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.964077, 40.822109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106073907879", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.962039, 40.824805 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475868442", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.964077, 40.822109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053405064", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.964421, 40.864637 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12273 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814355045", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.966612, 41.100379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430509", "POINTID": "1102654007056", "FULLNAME": "Barnett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.957460, 41.172270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12260 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435251", "POINTID": "1102653981166", "FULLNAME": "Grabill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.966907, 41.210882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12259 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052026865", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.967822, 41.214032 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432857", "POINTID": "1102654010431", "FULLNAME": "Concord Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.963573, 41.325604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12200 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437112", "POINTID": "1102654014308", "FULLNAME": "Jordan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.966349, 41.700882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12524 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435824", "POINTID": "1102653982628", "FULLNAME": "Hartford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.956897, 38.993116 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446116", "POINTID": "1102654003008", "FULLNAME": "Wilmington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.946659, 39.062457 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449749", "POINTID": "1102654003354", "FULLNAME": "Wrights Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.957176, 39.135611 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436565", "POINTID": "1102654013889", "FULLNAME": "Huber-Briggs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.948843, 39.234775 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433657", "POINTID": "1102653976115", "FULLNAME": "Dover", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.947729, 39.241442 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443815", "POINTID": "1102653998789", "FULLNAME": "South Gate", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.956621, 39.321162 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108931835", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.956608, 39.453163 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12469 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108931835", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.956608, 39.453163 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12459 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273726010", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.947367, 39.544809 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440060", "POINTID": "1102654016753", "FULLNAME": "New Hope Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.946901, 39.568382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442303", "POINTID": "1102653997034", "FULLNAME": "Roseburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.946901, 39.588937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443497", "POINTID": "1102654019805", "FULLNAME": "Silver Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.954067, 39.636383 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052095853", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.949264, 39.638811 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440932", "POINTID": "1102654017694", "FULLNAME": "Patterson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.946901, 39.651436 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432653", "POINTID": "1102653973114", "FULLNAME": "Clifton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.955789, 39.690324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12441 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432653", "POINTID": "1102653973114", "FULLNAME": "Clifton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.955789, 39.690324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119475319", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.953558, 39.812480 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119475814", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.953290, 39.830122 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119475809", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.947700, 39.830066 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12419 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119686992", "FULLNAME": "Hillcrest Baptist Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -84.948054, 39.878728 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433659", "POINTID": "1102654011399", "FULLNAME": "Dover Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.948014, 39.903934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12384 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052036954", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.954945, 40.171008 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010883225846", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.950200, 40.174080 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12382 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439309", "POINTID": "1102654016146", "FULLNAME": "Moffitt Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.951906, 40.187822 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12334 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103737983454", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.951868, 40.594853 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735893349", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.950117, 40.594680 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432791", "POINTID": "1102654010314", "FULLNAME": "Collins Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.951629, 40.603378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12332 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443736", "POINTID": "1102654019987", "FULLNAME": "Snow Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.953574, 40.613934 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432377", "POINTID": "1102653972253", "FULLNAME": "Ceylon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.953295, 40.606712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12331 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443736", "POINTID": "1102654019987", "FULLNAME": "Snow Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.953574, 40.613934 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12328 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475839017", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.953408, 40.644709 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475839016", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.951200, 40.644729 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12326 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046987744", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.956723, 40.662697 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430849", "POINTID": "1102653967792", "FULLNAME": "Berne", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.951906, 40.657824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12321 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435249", "POINTID": "1102654012677", "FULLNAME": "Graber Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.954129, 40.702545 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432958", "POINTID": "1102653973845", "FULLNAME": "Coppess Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.956908, 40.745046 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102535536694", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.950830, 40.746288 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12315 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102535536693", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.948507, 40.748047 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12311 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434126", "POINTID": "1102653977583", "FULLNAME": "Elm Tree Xroad", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.956074, 40.788379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12307 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053405145", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.955033, 40.819032 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442634", "POINTID": "1102654019038", "FULLNAME": "Saint Josephs Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.950240, 40.834214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12304 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105533836840", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.951828, 40.844534 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105533836839", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.948775, 40.844546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12303 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105533837144", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.954301, 40.849185 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105533836846", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.949548, 40.848588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430509", "POINTID": "1102654007056", "FULLNAME": "Barnett Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.957460, 41.172270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439389", "POINTID": "1102653991347", "FULLNAME": "Moore", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.952461, 41.396995 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12226 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444589", "POINTID": "1102654000359", "FULLNAME": "Taylor Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.949403, 41.485605 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292467", "FULLNAME": "Pigeon Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.948164, 41.636426 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451978", "POINTID": "1102653957536", "FULLNAME": "Eaton Creek Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.950237, 41.720329 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102378159269", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.946496, 41.738518 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8651, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108857072089", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.946791, 41.740988 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102378159269", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.946496, 41.738518 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437362", "POINTID": "1102653986232", "FULLNAME": "Kirschs Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.936617, 39.122001 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12482 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435142", "POINTID": "1102653952215", "FULLNAME": "Gobblers Knob Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.940788, 39.345051 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449633", "POINTID": "1102653971913", "FULLNAME": "Cedar Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.937730, 39.356996 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12470 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445916", "POINTID": "1102654002742", "FULLNAME": "Whitcomb", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.936899, 39.448383 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12450 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431975", "POINTID": "1102654009162", "FULLNAME": "Calvary Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.936343, 39.621714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12447 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445799", "POINTID": "1102654021723", "FULLNAME": "West Point Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.938846, 39.639769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119477725", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.938816, 39.813359 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119475799", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.946386, 39.830085 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119477666", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.941346, 39.828332 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119477580", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.939069, 39.827619 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119686988", "FULLNAME": "7th Day Adventist Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -84.945436, 39.891351 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445619", "POINTID": "1102654002144", "FULLNAME": "Webster", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.945238, 39.903379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12399 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438430", "POINTID": "1102653988871", "FULLNAME": "Lynn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.939683, 40.049766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12394 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439660", "POINTID": "1102654016487", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.938293, 40.090046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12361 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430199", "POINTID": "1102653965286", "FULLNAME": "Antioch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.942185, 40.367821 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12333 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441511", "POINTID": "1102654018069", "FULLNAME": "Pound Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.938296, 40.600321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12318 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443663", "POINTID": "1102654019947", "FULLNAME": "Smith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.940517, 40.723935 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053312366", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.945366, 40.741358 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439338", "POINTID": "1102653991122", "FULLNAME": "Monroe", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.936907, 40.745046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12307 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053406321", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.941354, 40.821931 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435468", "POINTID": "1102654012913", "FULLNAME": "Greenwood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.945517, 40.830325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435468", "POINTID": "1102654012913", "FULLNAME": "Greenwood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.945517, 40.830325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12304 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053406140", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.941493, 40.845908 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262876197", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.940597, 40.844887 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12303 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053404158", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.942051, 40.848890 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12301 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439330", "POINTID": "1102653991064", "FULLNAME": "Monmouth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.944406, 40.867824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292072", "FULLNAME": "Casad Indl Park", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.941464, 41.078646 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292106", "FULLNAME": "Air Park Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.945908, 41.127256 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434546", "POINTID": "1102653979037", "FULLNAME": "Five Points", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.940238, 41.123382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439133", "POINTID": "1102653990628", "FULLNAME": "Milan Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.946072, 41.144214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12263 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433233", "POINTID": "1102653974718", "FULLNAME": "Cuba", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.938572, 41.185604 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12252 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445930", "POINTID": "1102654021859", "FULLNAME": "White City Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.939128, 41.271160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432848", "POINTID": "1102653973708", "FULLNAME": "Concord", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.945238, 41.326160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102378159269", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.946496, 41.738518 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110348058887", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.943231, 41.731563 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102378176550", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.935745, 41.738278 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102378159269", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.946496, 41.738518 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102378177471", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.935861, 41.739583 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434612", "POINTID": "1102653979236", "FULLNAME": "Florence", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.924392, 38.784229 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445743", "POINTID": "1102654021690", "FULLNAME": "West Fork Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.926897, 39.169226 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12493 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105821056", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.925480, 39.255232 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440836", "POINTID": "1102653994358", "FULLNAME": "Palestine", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.927731, 39.417273 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102608962667", "FULLNAME": "Quail Run Ct Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.925247, 39.631021 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437816", "POINTID": "1102653987881", "FULLNAME": "Liberty", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.931113, 39.635611 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102608962667", "FULLNAME": "Quail Run Ct Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.925247, 39.631021 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273728612", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.926392, 39.656276 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273728617", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.924161, 39.656010 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441960", "POINTID": "1102654018490", "FULLNAME": "Richland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.929402, 39.689769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119477776", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.929195, 39.815290 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119477739", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.931011, 39.819167 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119477771", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.927999, 39.818267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119461916", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.929464, 39.827162 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433909", "POINTID": "1102653976813", "FULLNAME": "East Haven", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.930791, 39.839213 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445578", "POINTID": "1102654002068", "FULLNAME": "Wayne", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.925515, 39.887823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441687", "POINTID": "1102654018222", "FULLNAME": "Quaker Lynn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.931070, 40.028101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292392", "FULLNAME": "Randolph County Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.929386, 40.167691 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12360 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435902", "POINTID": "1102654013273", "FULLNAME": "Hawkins Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.926073, 40.373100 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12331 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431812", "POINTID": "1102654008811", "FULLNAME": "Bunker Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.931352, 40.614767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12316 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102535539783", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.932382, 40.744542 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12309 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475861731", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.930274, 40.799801 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12308 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010887006409", "FULLNAME": "Peacekeepers Way", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.930295, 40.810521 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12307 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292010", "FULLNAME": "Gage Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.926462, 40.814757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446543", "POINTID": "1102653975341", "FULLNAME": "Decatur", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.929128, 40.830603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292091", "FULLNAME": "Lautzenhiser Airpark", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.928959, 41.501704 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110348062141", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.926422, 41.549843 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110348058531", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.930223, 41.553389 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110348058676", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.927924, 41.552645 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110348058321", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.929458, 41.558373 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451967", "POINTID": "1102654014300", "FULLNAME": "Jones Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.931346, 41.686716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437552", "POINTID": "1102654014743", "FULLNAME": "Lakeside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.933291, 41.714216 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451968", "POINTID": "1102654020866", "FULLNAME": "The Old Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.931625, 41.726439 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434824", "POINTID": "1102653980004", "FULLNAME": "Fremont", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.932736, 41.730883 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12548 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434612", "POINTID": "1102653979236", "FULLNAME": "Florence", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.924392, 38.784229 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430489", "POINTID": "1102654007001", "FULLNAME": "Bark Works Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.923281, 38.855061 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12536 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435316", "POINTID": "1102654012737", "FULLNAME": "Grant Brothers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.916337, 38.883116 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504209878", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.913437, 39.043830 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12513 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010866025244", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.917458, 39.084384 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010866025243", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.916374, 39.082768 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434204", "POINTID": "1102653951972", "FULLNAME": "English Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.919397, 39.363107 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12449 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102610532402", "FULLNAME": "Harbor Ct Cul-De-Sac", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.921658, 39.629333 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273725624", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.917163, 39.631042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12448 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273728730", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.917807, 39.631771 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273725624", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.917163, 39.631042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110273728617", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.924161, 39.656010 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433862", "POINTID": "1102654011494", "FULLNAME": "Earlham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.918847, 39.824212 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119477561", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.922061, 39.831280 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472839230", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.916755, 39.841728 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119482255", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.913223, 39.841722 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437322", "POINTID": "1102654014542", "FULLNAME": "King Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.923292, 39.846990 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119453766", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.914827, 39.842286 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119446813", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.921803, 39.951180 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446104", "POINTID": "1102654022045", "FULLNAME": "Willow Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.913960, 39.951129 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12409 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436681", "POINTID": "1102654014064", "FULLNAME": "Independent Order of Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.921071, 39.965046 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12377 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443029", "POINTID": "1102654019316", "FULLNAME": "Saratoga Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.923294, 40.236432 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443028", "POINTID": "1102653997684", "FULLNAME": "Saratoga", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.918295, 40.236989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12374 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440586", "POINTID": "1102654017306", "FULLNAME": "Old Prospect Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.914129, 40.256432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12373 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439991", "POINTID": "1102654016716", "FULLNAME": "Neimer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.919963, 40.265599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431379", "POINTID": "1102653968986", "FULLNAME": "Boundary City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.921908, 40.344488 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12340 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440530", "POINTID": "1102654017154", "FULLNAME": "Old Baptist Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.914961, 40.541157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12307 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475865681", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.924078, 40.819584 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053500776", "FULLNAME": "County Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -84.917168, 40.820818 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12300 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430114", "POINTID": "1102654006579", "FULLNAME": "Alpha Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.919129, 40.875880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015482030810", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.921760, 41.126391 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12261 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435737", "POINTID": "1102653982435", "FULLNAME": "Harlan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.919682, 41.196159 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12251 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443944", "POINTID": "1102653999129", "FULLNAME": "Spencerville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.921905, 41.283104 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12246 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436984", "POINTID": "1102654014225", "FULLNAME": "Jenkins Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.923571, 41.326994 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436852", "POINTID": "1102653985123", "FULLNAME": "Island Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.921068, 41.540881 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440485", "POINTID": "1102653993732", "FULLNAME": "Oakwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.913569, 41.549772 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440994", "POINTID": "1102653994655", "FULLNAME": "Penn Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.923847, 41.544216 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440485", "POINTID": "1102653993732", "FULLNAME": "Oakwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.913569, 41.549772 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434715", "POINTID": "1102653979662", "FULLNAME": "Fountain Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.914124, 41.563106 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451951", "POINTID": "1102654020056", "FULLNAME": "South Scott Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.923847, 41.620050 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8654, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434105", "POINTID": "1102653977531", "FULLNAME": "Ellis", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.915234, 41.632549 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12532 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292331", "FULLNAME": "Rising Sun Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.910616, 38.925325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12531 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292331", "FULLNAME": "Rising Sun Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.910616, 38.925325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12518 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504209878", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.913437, 39.043830 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504209885", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.910785, 39.044453 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504209851", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.912866, 39.046725 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504210530", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.905707, 39.047202 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445859", "POINTID": "1102654002612", "FULLNAME": "Westside", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.907244, 39.063892 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12514 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106092508641", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.906043, 39.071670 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12513 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452302", "POINTID": "1102653957127", "FULLNAME": "Dearborn Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.904396, 39.083947 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435550", "POINTID": "1102653981909", "FULLNAME": "Guilford", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.911895, 39.168111 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12474 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436918", "POINTID": "1102654014195", "FULLNAME": "James Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.907174, 39.418384 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431080", "POINTID": "1102653968053", "FULLNAME": "Billingsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.909677, 39.555882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442466", "POINTID": "1102654018835", "FULLNAME": "Saint Andrews Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.903567, 39.806158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119465227", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.904857, 39.816058 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119477835", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.912909, 39.821614 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119482255", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.913223, 39.841722 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072965861", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.910004, 39.908074 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12327 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433097", "POINTID": "1102654010840", "FULLNAME": "Crawford Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.903017, 40.651435 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12309 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296499532", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.903752, 40.803961 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12307 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053404945", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.908030, 40.818310 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262880627", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.905772, 40.829863 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262874100", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.904133, 40.838674 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12304 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475846873", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.909905, 40.844246 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262874100", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.904133, 40.838674 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12293 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438704", "POINTID": "1102654015558", "FULLNAME": "Massilon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.910237, 40.933935 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019626999013", "FULLNAME": "Air Park Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.909151, 41.143643 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12221 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451952", "POINTID": "1102654013079", "FULLNAME": "Hamilton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.905962, 41.532232 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12220 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435635", "POINTID": "1102653982177", "FULLNAME": "Hamilton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.912735, 41.533660 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12219 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432529", "POINTID": "1102653972808", "FULLNAME": "Circle Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.909956, 41.549772 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019665352242", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.903647, 41.546980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12218 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432750", "POINTID": "1102653973467", "FULLNAME": "Cold Springs", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.908845, 41.555882 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432529", "POINTID": "1102653972808", "FULLNAME": "Circle Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.909956, 41.549772 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110348063271", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.911951, 41.565791 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449833", "POINTID": "1102653972913", "FULLNAME": "Clarks Landing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.911624, 41.559772 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12216 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440734", "POINTID": "1102653994268", "FULLNAME": "Otsego Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.908845, 41.572549 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440735", "POINTID": "1102654017533", "FULLNAME": "Otsego Center Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.908290, 41.568939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12214 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444621", "POINTID": "1102654020803", "FULLNAME": "Teegardin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.904956, 41.588105 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12517 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444658", "POINTID": "1102654000537", "FULLNAME": "Texas", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.893560, 39.047559 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12516 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445180", "POINTID": "1102654001253", "FULLNAME": "Utah", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.898004, 39.060891 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12515 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432720", "POINTID": "1102653951412", "FULLNAME": "Cobb Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.899704, 39.069869 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010883225819", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.894488, 39.120599 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440983", "POINTID": "1102654017747", "FULLNAME": "Pelley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.898007, 39.157555 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438224", "POINTID": "1102653988438", "FULLNAME": "Logan", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.894673, 39.248108 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438227", "POINTID": "1102654015166", "FULLNAME": "Logan Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.894117, 39.241163 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440117", "POINTID": "1102653992918", "FULLNAME": "New Trenton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.900506, 39.309496 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12478 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431931", "POINTID": "1102653951440", "FULLNAME": "Cobbs Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.900785, 39.378663 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440532", "POINTID": "1102653993890", "FULLNAME": "Old Bath", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.891620, 39.508382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119475435", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.901268, 39.808208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12423 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119455444", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.894651, 39.850725 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443979", "POINTID": "1102653999165", "FULLNAME": "Spring Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.894125, 39.848380 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443981", "POINTID": "1102653999175", "FULLNAME": "Spring Grove Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.892457, 39.843380 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473063148", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.895609, 39.851751 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119453180", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.891596, 39.864403 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015503315338", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.891376, 39.874877 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119478166", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.893205, 39.870657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12355 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431505", "POINTID": "1102653969453", "FULLNAME": "Brice", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.896352, 40.418099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12345 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445827", "POINTID": "1102654002464", "FULLNAME": "Westchester", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.894960, 40.498377 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12309 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296499684", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.901598, 40.803602 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446653", "POINTID": "1102653955681", "FULLNAME": "Adams County Home", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.898573, 40.797825 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12306 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053406301", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.893938, 40.829132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053406176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.900584, 40.838834 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053406323", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.900718, 40.836724 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053406289", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.897754, 40.832570 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262862682", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.893079, 40.832332 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12304 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053406176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.900584, 40.838834 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12303 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053406076", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.895239, 40.855316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12302 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053406076", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.895239, 40.855316 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12291 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431369", "POINTID": "1102653968932", "FULLNAME": "Boston Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.900238, 40.948381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12282 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444761", "POINTID": "1102654000625", "FULLNAME": "Tillman", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.893294, 41.024214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12281 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446497", "POINTID": "1102654003669", "FULLNAME": "Zulu", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.892181, 41.036992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442555", "POINTID": "1102653997313", "FULLNAME": "Saint Joe", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.901349, 41.315327 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442093", "POINTID": "1102654018595", "FULLNAME": "Riverside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.901555, 41.311330 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12241 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437449", "POINTID": "1102654014661", "FULLNAME": "Kraft Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.901070, 41.361716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451950", "POINTID": "1102653996104", "FULLNAME": "Ravinia Oaks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.901067, 41.565050 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430201", "POINTID": "1102654006668", "FULLNAME": "Antioch Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.889947, 38.865339 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430197", "POINTID": "1102653965221", "FULLNAME": "Antioch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.883834, 38.859506 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430201", "POINTID": "1102654006668", "FULLNAME": "Antioch Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.889947, 38.865339 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12521 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504432926", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.883217, 39.012700 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12520 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442108", "POINTID": "1102654018603", "FULLNAME": "Riverview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.887726, 39.025891 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431769", "POINTID": "1102653970458", "FULLNAME": "Buffalo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.883837, 39.020615 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471598831", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.888860, 39.096727 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471599232", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.885607, 39.096712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292085", "FULLNAME": "Dearborn County Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -84.884132, 39.111053 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015619356615", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.880650, 39.115725 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010883226183", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.889684, 39.126511 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105799959", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.881924, 39.209088 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105868667", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.880266, 39.212611 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445977", "POINTID": "1102653955372", "FULLNAME": "Whites Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.887449, 39.261163 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440118", "POINTID": "1102653953769", "FULLNAME": "New Trenton Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.888563, 39.313109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12481 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434087", "POINTID": "1102653951944", "FULLNAME": "Elkhorn Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.887452, 39.354497 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439539", "POINTID": "1102654016347", "FULLNAME": "Mount Carmel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.886342, 39.407272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442873", "POINTID": "1102653997466", "FULLNAME": "Salem", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.890234, 39.596438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12451 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438336", "POINTID": "1102653988677", "FULLNAME": "Lotus", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.889955, 39.613102 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119468476", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.881111, 39.798489 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449062", "POINTID": "1102653998881", "FULLNAME": "South Richmond", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.888289, 39.800601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449057", "POINTID": "1102653981743", "FULLNAME": "Greenwood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.888013, 39.812267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441976", "POINTID": "1102653996424", "FULLNAME": "Richmond", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.890236, 39.828933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12422 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119478277", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.886674, 39.852638 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292547", "FULLNAME": "Reid Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -84.882876, 39.864304 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119478259", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.885207, 39.859101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015503315338", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.891376, 39.874877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12418 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432449", "POINTID": "1102653972568", "FULLNAME": "Chester", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.887736, 39.888101 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12401 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439570", "POINTID": "1102654016390", "FULLNAME": "Mount Gilliard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.883571, 40.035879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439570", "POINTID": "1102654016390", "FULLNAME": "Mount Gilliard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.883571, 40.035879 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12383 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435807", "POINTID": "1102653982587", "FULLNAME": "Harrisville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.881626, 40.184767 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12304 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262861043", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.886720, 40.843278 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12303 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445094", "POINTID": "1102654021218", "FULLNAME": "Union Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.889684, 40.847547 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12298 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441323", "POINTID": "1102654017948", "FULLNAME": "Pleasant Valley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.889684, 40.891158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12237 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437464", "POINTID": "1102654014671", "FULLNAME": "Krontz Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.889681, 41.394494 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690861898", "FULLNAME": "Susie Park", "MTFCC": "K2188" }, "geometry": { "type": "Point", "coordinates": [ -84.881704, 41.425246 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12231 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442381", "POINTID": "1102654018751", "FULLNAME": "Rude Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.891068, 41.445606 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8657, "y": 12213 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440283", "POINTID": "1102654016981", "FULLNAME": "North Otsgeo Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.885513, 41.596161 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12540 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438929", "POINTID": "1102654015833", "FULLNAME": "McNutt Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.873000, 38.848674 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12534 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440231", "POINTID": "1102654016970", "FULLNAME": "North Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.875779, 38.900894 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449841", "POINTID": "1102653993519", "FULLNAME": "Norths Landing", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.873558, 38.902285 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010866027325", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.879880, 39.102949 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438397", "POINTID": "1102653953236", "FULLNAME": "Ludlow Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.870721, 39.099527 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108310835511", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.872689, 39.123360 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108310835462", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.869331, 39.122020 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105841759", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.879574, 39.213479 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015645948885", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.871372, 39.217690 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015620166055", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.869210, 39.221147 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472447046", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.872461, 39.245821 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105835989", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.869653, 39.242888 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431459", "POINTID": "1102653969240", "FULLNAME": "Braysville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.869701, 39.288079 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431460", "POINTID": "1102654008268", "FULLNAME": "Braysville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.869395, 39.285052 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12480 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443314", "POINTID": "1102653998197", "FULLNAME": "Sharptown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.873564, 39.366996 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12475 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439534", "POINTID": "1102653991628", "FULLNAME": "Mt Carmel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.873285, 39.407272 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052154357", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.878901, 39.798159 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015503307405", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.869766, 39.798320 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119465049", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.875465, 39.818034 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119478791", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.869248, 39.817702 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119450980", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.876914, 39.830412 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12414 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119450413", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.870047, 39.923122 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12337 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433326", "POINTID": "1102654011129", "FULLNAME": "Daugherty Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.876906, 40.570877 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12292 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431606", "POINTID": "1102654008582", "FULLNAME": "Brown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.879961, 40.942824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446650", "POINTID": "1102653968631", "FULLNAME": "Bluecast", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.869404, 41.154216 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12240 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292104", "FULLNAME": "Greuter Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.877608, 41.368876 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12234 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690861775", "FULLNAME": "Henrickson Park", "MTFCC": "K2188" }, "geometry": { "type": "Point", "coordinates": [ -84.879510, 41.425346 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690862691", "FULLNAME": "Southside Park", "MTFCC": "K2188" }, "geometry": { "type": "Point", "coordinates": [ -84.875817, 41.423098 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12233 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690862528", "FULLNAME": "Mason Park", "MTFCC": "K2188" }, "geometry": { "type": "Point", "coordinates": [ -84.877123, 41.427267 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690862584", "FULLNAME": "Hathaway Park", "MTFCC": "K2188" }, "geometry": { "type": "Point", "coordinates": [ -84.872711, 41.426680 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12224 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292116", "FULLNAME": "Flying Crown Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.877053, 41.500820 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12208 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430846", "POINTID": "1102653967781", "FULLNAME": "Berlien", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.876621, 41.636715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451977", "POINTID": "1102653962856", "FULLNAME": "Steuben County Speedway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.876066, 41.685883 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433828", "POINTID": "1102654011467", "FULLNAME": "Dygert Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.873845, 41.686716 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8658, "y": 12193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00635676", "POINTID": "1102707574039", "FULLNAME": "Ray", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.871898, 41.759766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12544 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446006", "POINTID": "1102654021953", "FULLNAME": "Wigal Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.858836, 38.814230 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439881", "POINTID": "1102654016625", "FULLNAME": "Munger Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.860778, 38.826175 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436873", "POINTID": "1102654014170", "FULLNAME": "Jack Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.860501, 38.864786 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435560", "POINTID": "1102653981962", "FULLNAME": "Gurley Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.858278, 38.859228 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432273", "POINTID": "1102654009557", "FULLNAME": "Cedar Hedge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.862170, 38.949783 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12528 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442059", "POINTID": "1102654018544", "FULLNAME": "Rising Sun Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.866059, 38.954783 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12525 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441520", "POINTID": "1102653954089", "FULLNAME": "Powell Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.860504, 38.981171 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436042", "POINTID": "1102653952587", "FULLNAME": "Henschen Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.864393, 38.997560 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105575892353", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.868695, 39.093917 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12510 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435429", "POINTID": "1102653981608", "FULLNAME": "Greendale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.864117, 39.112558 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12509 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435431", "POINTID": "1102654012862", "FULLNAME": "Greendale Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.864417, 39.117034 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108310835462", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.869331, 39.122020 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010883225706", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.861545, 39.128756 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435027", "POINTID": "1102654012416", "FULLNAME": "Georgetown Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.861338, 39.163110 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436891", "POINTID": "1102653952862", "FULLNAME": "Jackson Ridge", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.864114, 39.195333 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105807263", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.865109, 39.214419 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015620757595", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.866359, 39.223849 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015620166055", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.869210, 39.221147 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105813400", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.864053, 39.227109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12495 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015681548395", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.867354, 39.237156 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12489 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431460", "POINTID": "1102654008268", "FULLNAME": "Braysville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.869395, 39.285052 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443739", "POINTID": "1102653954711", "FULLNAME": "Snow Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.863562, 39.330609 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443735", "POINTID": "1102654019981", "FULLNAME": "Snow Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.863004, 39.326719 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12468 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444011", "POINTID": "1102654020169", "FULLNAME": "Springfield Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.867730, 39.465885 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12463 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430574", "POINTID": "1102653966926", "FULLNAME": "Bath", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.862454, 39.508382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12453 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433011", "POINTID": "1102653974030", "FULLNAME": "Cottage Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.861620, 39.596438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292453", "FULLNAME": "Norris Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.864830, 39.652485 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12442 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437365", "POINTID": "1102653986242", "FULLNAME": "Kitchel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.861344, 39.683104 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446226", "POINTID": "1102654003164", "FULLNAME": "Witts Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.861491, 39.712265 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12431 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119451216", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.864653, 39.776913 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12429 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072966686", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.867325, 39.796615 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12428 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452323", "POINTID": "1102653957958", "FULLNAME": "Forest Hills Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.866067, 39.801714 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119460949", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.865335, 39.815850 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119450917", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.859037, 39.815090 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119450770", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.864020, 39.825421 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119478791", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.869248, 39.817702 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119450960", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.863731, 39.818269 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12425 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119450770", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.864020, 39.825421 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119448019", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.859855, 39.834497 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12421 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119447737", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.865984, 39.867281 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119440687", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.863629, 39.867437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12420 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119440687", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.863629, 39.867437 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439720", "POINTID": "1102654016543", "FULLNAME": "Mount Vernon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.858567, 39.932823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12404 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430231", "POINTID": "1102653965385", "FULLNAME": "Arba", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.866904, 40.010880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430231", "POINTID": "1102653965385", "FULLNAME": "Arba", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.866904, 40.010880 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12400 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433126", "POINTID": "1102653974435", "FULLNAME": "Crete", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.861625, 40.043378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12387 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443430", "POINTID": "1102654019718", "FULLNAME": "Shockney Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.858849, 40.151155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432878", "POINTID": "1102654010466", "FULLNAME": "Conklin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.862183, 40.200045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12359 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442867", "POINTID": "1102653997458", "FULLNAME": "Salamonia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.864932, 40.382043 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12353 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430777", "POINTID": "1102653967514", "FULLNAME": "Bellfountain", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.863572, 40.433378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12305 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442892", "POINTID": "1102654019232", "FULLNAME": "Salem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.867183, 40.833658 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12293 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433917", "POINTID": "1102653976849", "FULLNAME": "East Liberty", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.861625, 40.935603 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12289 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440508", "POINTID": "1102654017141", "FULLNAME": "Odd Fellows Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.864683, 40.965325 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12288 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439348", "POINTID": "1102653991175", "FULLNAME": "Monroeville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.868293, 40.974769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12283 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444836", "POINTID": "1102654000818", "FULLNAME": "Townley", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.863849, 41.018103 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062790769", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.858613, 41.129025 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062585258", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.866287, 41.123368 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062790766", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.858669, 41.130757 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12268 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292111", "FULLNAME": "Brenneke Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.860941, 41.144154 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12266 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446650", "POINTID": "1102653968631", "FULLNAME": "Bluecast", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.869404, 41.154216 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12257 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435025", "POINTID": "1102653980569", "FULLNAME": "Georgetown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.865514, 41.231993 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12254 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292138", "FULLNAME": "Hilltop Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.862569, 41.257815 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430123", "POINTID": "1102654006581", "FULLNAME": "Alton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.867180, 41.316715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12232 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690863563", "FULLNAME": "Maxton Park", "MTFCC": "K2188" }, "geometry": { "type": "Point", "coordinates": [ -84.858774, 41.435902 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446716", "POINTID": "1102653994352", "FULLNAME": "Page", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.859678, 41.687550 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292434", "FULLNAME": "Murphy Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.864602, 41.690959 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292456", "FULLNAME": "Clear Lake Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -84.858884, 41.733333 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433048", "POINTID": "1102654010736", "FULLNAME": "Covenant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.861067, 41.753383 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12544 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445341", "POINTID": "1102653955294", "FULLNAME": "Wade Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.848278, 38.814508 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443183", "POINTID": "1102653997964", "FULLNAME": "Searcy Xroad", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.858010, 38.846725 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12539 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435560", "POINTID": "1102653981962", "FULLNAME": "Gurley Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.858278, 38.859228 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12538 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438937", "POINTID": "1102654015872", "FULLNAME": "Mead Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.853002, 38.871730 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12529 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449718", "POINTID": "1102653996566", "FULLNAME": "Rising Sun", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.853836, 38.949505 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12526 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437488", "POINTID": "1102654014690", "FULLNAME": "Lagrange Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.849947, 38.974226 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12523 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432066", "POINTID": "1102653971282", "FULLNAME": "Camp Shor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.848590, 38.997203 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437674", "POINTID": "1102653987382", "FULLNAME": "Lawrenceburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.849949, 39.090892 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436375", "POINTID": "1102653984122", "FULLNAME": "Homestead", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.852449, 39.124351 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435732", "POINTID": "1102653982414", "FULLNAME": "Hardinsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.847452, 39.121991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105848146", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.847291, 39.148919 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105842434", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.853621, 39.168924 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105846820", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.847248, 39.168731 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105842253", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.854780, 39.178662 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105842517", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.850534, 39.175526 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262911696", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.849437, 39.189373 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106072658054", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.854705, 39.196266 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12498 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105826029", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.857653, 39.212160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12497 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431525", "POINTID": "1102653969558", "FULLNAME": "Bright", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.856060, 39.218388 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12496 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015648786218", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.854142, 39.229280 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12494 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435789", "POINTID": "1102653952443", "FULLNAME": "Harrison Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.855228, 39.244497 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12467 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441800", "POINTID": "1102653996116", "FULLNAME": "Raymond", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.849397, 39.471717 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12462 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430976", "POINTID": "1102654007566", "FULLNAME": "Bethlehem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.855786, 39.515606 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432429", "POINTID": "1102653972474", "FULLNAME": "Charlottesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.853010, 39.536161 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12454 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437197", "POINTID": "1102654014391", "FULLNAME": "Keiffer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.852455, 39.581715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12439 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434543", "POINTID": "1102653978982", "FULLNAME": "Five Points", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.851899, 39.711990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12435 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431367", "POINTID": "1102653968921", "FULLNAME": "Boston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.851899, 39.741158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12433 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435104", "POINTID": "1102654012546", "FULLNAME": "Glen Haven Memorial Gnds", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.848844, 39.764214 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12432 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438209", "POINTID": "1102653988395", "FULLNAME": "Locust Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.851899, 39.769492 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119482900", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.856540, 39.815875 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119450996", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.858047, 39.820994 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119447923", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.847490, 39.823707 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12424 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119447987", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.854756, 39.837611 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12416 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119450507", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.854936, 39.908308 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12413 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439720", "POINTID": "1102654016543", "FULLNAME": "Mount Vernon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.858567, 39.932823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12405 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01851956", "POINTID": "1102653952727", "FULLNAME": "Hoosier Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.851347, 40.000323 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12397 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443920", "POINTID": "1102653999063", "FULLNAME": "Spartanburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.851626, 40.066157 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430553", "POINTID": "1102654007095", "FULLNAME": "Bartonia Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.857739, 40.116989 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430552", "POINTID": "1102653966830", "FULLNAME": "Bartonia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.851071, 40.115324 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12340 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444890", "POINTID": "1102654000973", "FULLNAME": "Trinity", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.848571, 40.542545 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12337 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436949", "POINTID": "1102653985347", "FULLNAME": "Jay City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.848571, 40.567267 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12319 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442875", "POINTID": "1102653997473", "FULLNAME": "Salem", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.853292, 40.716991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12284 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434721", "POINTID": "1102653979709", "FULLNAME": "Four Presidents Cors", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.853847, 41.008103 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062790769", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.858613, 41.129025 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052031243", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.857484, 41.128171 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446280", "POINTID": "1102654003217", "FULLNAME": "Woodburn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.853292, 41.125326 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062586815", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.849182, 41.124063 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12269 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062790769", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.858613, 41.129025 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435622", "POINTID": "1102653982137", "FULLNAME": "Halls Cors", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.852178, 41.240882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440679", "POINTID": "1102653994065", "FULLNAME": "Orangeville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.856902, 41.335882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12222 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434000", "POINTID": "1102654011541", "FULLNAME": "Eddy Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.852176, 41.524495 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8660, "y": 12204 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446774", "POINTID": "1102653976999", "FULLNAME": "Eastpoint Trmnl", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.853230, 41.665208 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432849", "POINTID": "1102654010389", "FULLNAME": "Concord Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.840500, 38.791176 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12508 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435732", "POINTID": "1102653982414", "FULLNAME": "Hardinsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.847452, 39.121991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12507 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108310841851", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.842077, 39.138143 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437675", "POINTID": "1102653987397", "FULLNAME": "Lawrenceburg Junction", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.842450, 39.130612 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105808305", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.842399, 39.144057 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105847802", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.844531, 39.139198 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435541", "POINTID": "1102654012980", "FULLNAME": "Guard Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.839395, 39.139780 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105848146", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.847291, 39.148919 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105854360", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.837839, 39.153330 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105847784", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.846725, 39.162504 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105847875", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.845757, 39.157950 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105848101", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.841439, 39.158185 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105854033", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.836211, 39.164099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105846814", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.847517, 39.170353 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105846820", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.847248, 39.168731 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105854033", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.836211, 39.164099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105846845", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.844344, 39.178425 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12493 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435790", "POINTID": "1102653952449", "FULLNAME": "Harrison Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.846865, 39.253253 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435793", "POINTID": "1102654013196", "FULLNAME": "Harrison Hills Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.836337, 39.250887 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12486 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442216", "POINTID": "1102653996797", "FULLNAME": "Rockdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.846894, 39.316997 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12483 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433687", "POINTID": "1102653976217", "FULLNAME": "Drewersburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.837171, 39.340330 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430290", "POINTID": "1102654006757", "FULLNAME": "Asbury Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.844950, 39.424774 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12434 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292511", "FULLNAME": "Richmond Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.841415, 39.755513 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12427 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015503307170", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.847055, 39.815735 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12426 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119447923", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.847490, 39.823707 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441990", "POINTID": "1102654018532", "FULLNAME": "Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.840235, 39.822546 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12387 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443845", "POINTID": "1102653998887", "FULLNAME": "South Salem", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.841071, 40.151155 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12371 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436421", "POINTID": "1102654013774", "FULLNAME": "Hoover Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.842182, 40.287544 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12368 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442874", "POINTID": "1102653997472", "FULLNAME": "Salem", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.843292, 40.310321 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12337 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440037", "POINTID": "1102653992423", "FULLNAME": "New Corydon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.839961, 40.568656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12336 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438401", "POINTID": "1102654015307", "FULLNAME": "Lufborrow Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.846071, 40.578655 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12320 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444883", "POINTID": "1102654021014", "FULLNAME": "Tricker Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.839403, 40.708657 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12312 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441289", "POINTID": "1102653995202", "FULLNAME": "Pleasant Mills", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.842182, 40.777824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12308 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442068", "POINTID": "1102653996595", "FULLNAME": "Rivare", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.841348, 40.812268 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12299 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430112", "POINTID": "1102654007473", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.841903, 40.882824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12291 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436274", "POINTID": "1102654013691", "FULLNAME": "Hoffman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.842458, 40.951158 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292135", "FULLNAME": "Steinman Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.839516, 41.072535 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12275 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292115", "FULLNAME": "Basting Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.839795, 41.086423 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12270 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062585948", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.842718, 41.128195 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106080834466", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.841637, 41.128330 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12255 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443127", "POINTID": "1102654019404", "FULLNAME": "Scipio Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.838014, 41.250605 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12244 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434264", "POINTID": "1102654011747", "FULLNAME": "Evergreen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.839679, 41.343939 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442094", "POINTID": "1102654018599", "FULLNAME": "Riverside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.839956, 41.343104 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12243 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440155", "POINTID": "1102653993114", "FULLNAME": "Newville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.844958, 41.348661 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434264", "POINTID": "1102654011747", "FULLNAME": "Evergreen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.839679, 41.343939 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12215 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430126", "POINTID": "1102653964822", "FULLNAME": "Alvarado", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.837732, 41.576717 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12210 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439053", "POINTID": "1102653990379", "FULLNAME": "Metz", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.839398, 41.616160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12209 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433047", "POINTID": "1102653974115", "FULLNAME": "Courtney Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.838566, 41.629494 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12194 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102216716578", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.845167, 41.749249 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12542 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440929", "POINTID": "1102653994539", "FULLNAME": "Patriot", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.826891, 38.838673 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12506 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439187", "POINTID": "1102654016084", "FULLNAME": "Miller Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.827448, 39.141723 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12505 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105814478", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.835989, 39.151583 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105854033", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.836211, 39.164099 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105847712", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.835814, 39.158827 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105854308", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.829997, 39.157933 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105853995", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.831617, 39.168225 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105854033", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.836211, 39.164099 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444355", "POINTID": "1102654020559", "FULLNAME": "Sugar Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.836614, 39.180055 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105853939", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.835517, 39.174850 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12501 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015618864024", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.834419, 39.181741 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12499 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105881718", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.827271, 39.200461 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12493 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435793", "POINTID": "1102654013196", "FULLNAME": "Harrison Hills Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.836337, 39.250887 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12485 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440761", "POINTID": "1102654017545", "FULLNAME": "Otwell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.827448, 39.323664 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108920988", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.825938, 39.328607 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12460 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433102", "POINTID": "1102654010852", "FULLNAME": "Crawfords Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.826064, 39.531438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435177", "POINTID": "1102653981097", "FULLNAME": "Goodwins Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.833564, 39.649216 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12417 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439111", "POINTID": "1102653990483", "FULLNAME": "Middleboro", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.831901, 39.893936 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12411 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449747", "POINTID": "1102654002847", "FULLNAME": "Whitewater", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.831069, 39.944769 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430879", "POINTID": "1102653967874", "FULLNAME": "Bethel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.830235, 39.986712 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12383 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435929", "POINTID": "1102653982947", "FULLNAME": "Haysville Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.825794, 40.180601 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445120", "POINTID": "1102654021228", "FULLNAME": "Union City Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.828293, 40.198378 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12349 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440188", "POINTID": "1102653993172", "FULLNAME": "Noble", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.826070, 40.469490 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12309 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440579", "POINTID": "1102654017291", "FULLNAME": "Old Mount Tabor Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.831625, 40.803656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12247 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440156", "POINTID": "1102653993130", "FULLNAME": "Newville Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.829956, 41.314217 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12236 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444044", "POINTID": "1102653999336", "FULLNAME": "Stafford Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.831901, 41.408382 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444623", "POINTID": "1102654020814", "FULLNAME": "Teeters Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.825788, 41.718659 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8662, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432626", "POINTID": "1102653973042", "FULLNAME": "Clear Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.833288, 41.737548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12541 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433956", "POINTID": "1102654011517", "FULLNAME": "Eastview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.822722, 38.844508 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12504 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105854297", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.824544, 39.161804 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12503 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010866104976", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.821008, 39.167023 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12502 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010866104984", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.820987, 39.172946 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12500 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110105853822", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.820888, 39.193699 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12492 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445771", "POINTID": "1102654002340", "FULLNAME": "West Harrison", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.820764, 39.260912 ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01041362", "POINTID": "1102673754895", "FULLNAME": "Harrison", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.819946, 39.262000 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12484 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108920980", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.822215, 39.328611 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12477 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443125", "POINTID": "1102653997813", "FULLNAME": "Scipio", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.818297, 39.391993 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12473 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432880", "POINTID": "1102654010472", "FULLNAME": "Conn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.817728, 39.422553 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12472 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441010", "POINTID": "1102653994698", "FULLNAME": "Peoria", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.817157, 39.433374 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12465 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439301", "POINTID": "1102653990950", "FULLNAME": "Mixersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.824951, 39.488383 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12457 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432767", "POINTID": "1102654010277", "FULLNAME": "College Corner Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.816065, 39.561715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12456 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445731", "POINTID": "1102654002252", "FULLNAME": "West College Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.815931, 39.567453 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12446 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441005", "POINTID": "1102654017758", "FULLNAME": "Pentecost Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.824393, 39.651432 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12445 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441740", "POINTID": "1102654018245", "FULLNAME": "Railsback Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.819954, 39.662548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12430 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444088", "POINTID": "1102654020264", "FULLNAME": "State Line Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.814676, 39.785602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12406 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430893", "POINTID": "1102654007454", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.819957, 39.986991 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436420", "POINTID": "1102654013773", "FULLNAME": "Hoover Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.819404, 40.158656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052020439", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.819289, 40.213512 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442694", "POINTID": "1102654019075", "FULLNAME": "Saint Marys Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.823570, 40.223935 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12376 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440081", "POINTID": "1102653992630", "FULLNAME": "New Lisbon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.824404, 40.243656 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12364 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452381", "POINTID": "1102653961889", "FULLNAME": "Pleasant Hill Speedway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.823294, 40.341711 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12297 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432555", "POINTID": "1102654009954", "FULLNAME": "Clark Chapel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.823570, 40.898935 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12285 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444356", "POINTID": "1102654020560", "FULLNAME": "Sugar Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.816068, 41.003937 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12240 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445488", "POINTID": "1102654021542", "FULLNAME": "Wartenbe Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.817178, 41.374772 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12228 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430286", "POINTID": "1102653965669", "FULLNAME": "Artic", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.814676, 41.473661 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12217 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430902", "POINTID": "1102654007501", "FULLNAME": "Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.818286, 41.560882 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12202 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449750", "POINTID": "1102654003498", "FULLNAME": "York", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.822454, 41.688383 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292444", "FULLNAME": "East Clear Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -84.822773, 41.734998 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8664, "y": 12381 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445119", "POINTID": "1102654001162", "FULLNAME": "Union City", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.809126, 40.201990 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8664, "y": 12379 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110951551075", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.813710, 40.214501 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8664, "y": 12378 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431509", "POINTID": "1102654008395", "FULLNAME": "Brick Memorial Park Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.805792, 40.225045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8664, "y": 12347 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444140", "POINTID": "1102654020351", "FULLNAME": "Stevenson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.806071, 40.485045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8664, "y": 12276 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452039", "POINTID": "1102653977112", "FULLNAME": "Edgerton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.806066, 41.076713 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8664, "y": 12264 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433542", "POINTID": "1102654011315", "FULLNAME": "Diehl Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.804955, 41.172270 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8664, "y": 12252 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292097", "FULLNAME": "Hook Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.803679, 41.273924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8665, "y": 12252 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292097", "FULLNAME": "Hook Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.803679, 41.273924 ] } } +] } +] } +] } diff --git a/tests/pointlm/tl_2021_18_pointlm.shp.json.gz b/tests/pointlm/tl_2021_18_pointlm.shp.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..86709cabca26d8ce6a3f65664c3eca062006c0ee GIT binary patch literal 769065 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

9r%H8e+%#(pl(v6^NBEC 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

88lOh%{5b^ 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

?BwntC-HO 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 #CZHpuXwli7{I;?$h&lE+LLGi`IV#*G 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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%0DR;?neYdTixq`dNL7eswz4z*f=+2F`UT7r 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%0DW#)KXcUk}X0}WM+v|ZS|0QMv>OOy?$J--plI4 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%0A&U^diK|Za3|(#UV4)y0WOxQbBvxgB}#g|5Vw} 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

oA6EeCn;2N_z+Rv0tagw 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 #include "mvt.hpp" #include "projection.hpp" -#include "pool.hpp" #include "mbtiles.hpp" #include "geometry.hpp" #include "dirtiles.hpp" @@ -545,7 +544,7 @@ void *join_worker(void *v) { std::string compressed; if (!pC) { - compress(pbf, compressed); + compress(pbf, compressed, true); } else { compressed = pbf; } @@ -589,6 +588,7 @@ void handle_tasks(std::map> &tasks, std::vectorfirst.z, ai->first.x, ai->first.y); + fflush(stderr); } } } diff --git a/tile.cpp b/tile.cpp index b31dd0d20..0b0d10414 100644 --- a/tile.cpp +++ b/tile.cpp @@ -25,6 +25,7 @@ #include #include #include +#include #include #include "mvt.hpp" #include "mbtiles.hpp" @@ -40,6 +41,8 @@ #include "milo/dtoa_milo.h" #include "evaluator.hpp" #include "errors.hpp" +#include "compression.hpp" +#include "protozero/varint.hpp" extern "C" { #include "jsonpull/jsonpull.h" @@ -51,7 +54,7 @@ extern "C" { // Offset coordinates to keep them positive #define COORD_OFFSET (4LL << 32) -#define SHIFT_RIGHT(a) ((long long) std::round((double)(a) / (1LL << geometry_scale))) +#define SHIFT_RIGHT(a) ((long long) std::round((double) (a) / (1LL << geometry_scale))) #define XSTRINGIFY(s) STRINGIFY(s) #define STRINGIFY(s) #s @@ -328,7 +331,7 @@ struct ordercmp { } } ordercmp; -void rewrite(drawvec &geom, int z, int nextzoom, int maxzoom, long long *bbox, unsigned tx, unsigned ty, int buffer, int *within, std::atomic *geompos, FILE **geomfile, const char *fname, signed char t, int layer, long long metastart, signed char feature_minzoom, int child_shards, int max_zoom_increment, long long seq, int tippecanoe_minzoom, int tippecanoe_maxzoom, int segment, unsigned *initial_x, unsigned *initial_y, std::vector &metakeys, std::vector &metavals, bool has_id, unsigned long long id, unsigned long long index, unsigned long long label_point, long long extent) { +void rewrite(drawvec &geom, int z, int nextzoom, int maxzoom, long long *bbox, unsigned tx, unsigned ty, int buffer, int *within, std::atomic *geompos, compressor **geomfile, const char *fname, signed char t, int layer, signed char feature_minzoom, int child_shards, int max_zoom_increment, long long seq, int tippecanoe_minzoom, int tippecanoe_maxzoom, int segment, unsigned *initial_x, unsigned *initial_y, std::vector &metakeys, std::vector &metavals, bool has_id, unsigned long long id, unsigned long long index, unsigned long long label_point, long long extent) { if (geom.size() > 0 && (nextzoom <= maxzoom || additional[A_EXTEND_ZOOMS])) { int xo, yo; int span = 1 << (nextzoom - z); @@ -398,9 +401,10 @@ void rewrite(drawvec &geom, int z, int nextzoom, int maxzoom, long long *bbox, u { if (!within[j]) { - serialize_int(geomfile[j], nextzoom, &geompos[j], fname); - serialize_uint(geomfile[j], tx * span + xo, &geompos[j], fname); - serialize_uint(geomfile[j], ty * span + yo, &geompos[j], fname); + serialize_int(geomfile[j]->fp, nextzoom, &geompos[j], fname); + serialize_uint(geomfile[j]->fp, tx * span + xo, &geompos[j], fname); + serialize_uint(geomfile[j]->fp, ty * span + yo, &geompos[j], fname); + geomfile[j]->begin(); within[j] = 1; } @@ -415,21 +419,20 @@ void rewrite(drawvec &geom, int z, int nextzoom, int maxzoom, long long *bbox, u sf.tippecanoe_minzoom = tippecanoe_minzoom; sf.has_tippecanoe_maxzoom = tippecanoe_maxzoom != -1; sf.tippecanoe_maxzoom = tippecanoe_maxzoom; - sf.metapos = metastart; sf.geometry = geom2; sf.index = index; sf.label_point = label_point; sf.extent = extent; sf.feature_minzoom = feature_minzoom; - if (metastart < 0) { - for (size_t i = 0; i < metakeys.size(); i++) { - sf.keys.push_back(metakeys[i]); - sf.values.push_back(metavals[i]); - } + for (size_t i = 0; i < metakeys.size(); i++) { + sf.keys.push_back(metakeys[i]); + sf.values.push_back(metavals[i]); } - serialize_feature(geomfile[j], &sf, &geompos[j], fname, SHIFT_RIGHT(initial_x[segment]), SHIFT_RIGHT(initial_y[segment]), true); + std::string feature = serialize_feature(&sf, SHIFT_RIGHT(initial_x[segment]), SHIFT_RIGHT(initial_y[segment])); + geomfile[j]->serialize_long_long(feature.size(), &geompos[j], fname); + geomfile[j]->fwrite_check(feature.c_str(), sizeof(char), feature.size(), &geompos[j], fname); } } } @@ -1287,14 +1290,13 @@ long long choose_minextent(std::vector &extents, double f) { struct write_tile_args { struct task *tasks = NULL; - char *metabase = NULL; char *stringpool = NULL; int min_detail = 0; sqlite3 *outdb = NULL; const char *outdir = NULL; int buffer = 0; const char *fname = NULL; - FILE **geomfile = NULL; + compressor **geomfile = NULL; double todo = 0; std::atomic *along = NULL; double gamma = 0; @@ -1310,7 +1312,6 @@ struct write_tile_args { int low_detail = 0; double simplification = 0; std::atomic *most = NULL; - long long *meta_off = NULL; long long *pool_off = NULL; unsigned *initial_x = NULL; unsigned *initial_y = NULL; @@ -1336,6 +1337,8 @@ struct write_tile_args { struct json_object *filter = NULL; std::atomic *dropped_count = NULL; atomic_strategy *strategy = NULL; + int zoom = -1; + bool compressed; }; bool clip_to_tile(serial_feature &sf, int z, long long buffer) { @@ -1433,18 +1436,40 @@ void remove_attributes(serial_feature &sf, std::set const &exclude_ } } -serial_feature next_feature(FILE *geoms, std::atomic *geompos_in, char *metabase, long long *meta_off, int z, unsigned tx, unsigned ty, unsigned *initial_x, unsigned *initial_y, long long *original_features, long long *unclipped_features, int nextzoom, int maxzoom, int minzoom, int max_zoom_increment, size_t pass, std::atomic *along, long long alongminus, int buffer, int *within, FILE **geomfile, std::atomic *geompos, std::atomic *oprogress, double todo, const char *fname, int child_shards, struct json_object *filter, const char *stringpool, long long *pool_off, std::vector> *layer_unmaps, bool first_time) { +serial_feature next_feature(decompressor *geoms, std::atomic *geompos_in, int z, unsigned tx, unsigned ty, unsigned *initial_x, unsigned *initial_y, long long *original_features, long long *unclipped_features, int nextzoom, int maxzoom, int minzoom, int max_zoom_increment, size_t pass, std::atomic *along, long long alongminus, int buffer, int *within, compressor **geomfile, std::atomic *geompos, std::atomic *oprogress, double todo, const char *fname, int child_shards, struct json_object *filter, const char *stringpool, long long *pool_off, std::vector> *layer_unmaps, bool first_time, bool compressed) { while (1) { - serial_feature sf = deserialize_feature(geoms, geompos_in, metabase, meta_off, z, tx, ty, initial_x, initial_y); - if (sf.t < 0) { + serial_feature sf; + std::string s; + long long len; + + if (geoms->deserialize_long_long(&len, geompos_in) == 0) { + fprintf(stderr, "Unexpected physical EOF in feature stream\n"); + exit(EXIT_READ); + } + if (len == 0) { + if (compressed) { + geoms->end(geompos_in); + } + + sf.t = -2; return sf; } + s.resize(std::abs(len)); + size_t n = geoms->fread((void *) s.c_str(), sizeof(char), s.size(), geompos_in); + if (n != s.size()) { + fprintf(stderr, "Short read (%zu for %zu) from geometry\n", n, s.size()); + exit(EXIT_READ); + } + + sf = deserialize_feature(s, z, tx, ty, initial_x, initial_y); + size_t passes = pass + 1; double progress = floor(((((*geompos_in + *along - alongminus) / (double) todo) + pass) / passes + z) / (maxzoom + 1) * 1000) / 10; if (progress >= *oprogress + 0.1) { if (!quiet && !quiet_progress && progress_time()) { fprintf(stderr, " %3.1f%% %d/%u/%u \r", progress, z, tx, ty); + fflush(stderr); } if (logger.json_enabled && progress_time()) { logger.progress_tile(progress); @@ -1464,7 +1489,7 @@ serial_feature next_feature(FILE *geoms, std::atomic *geompos_in, cha if (first_time && pass == 0) { /* only write out the next zoom once, even if we retry */ if (sf.tippecanoe_maxzoom == -1 || sf.tippecanoe_maxzoom >= nextzoom) { - rewrite(sf.geometry, z, nextzoom, maxzoom, sf.bbox, tx, ty, buffer, within, geompos, geomfile, fname, sf.t, sf.layer, sf.metapos, sf.feature_minzoom, child_shards, max_zoom_increment, sf.seq, sf.tippecanoe_minzoom, sf.tippecanoe_maxzoom, sf.segment, initial_x, initial_y, sf.keys, sf.values, sf.has_id, sf.id, sf.index, sf.label_point, sf.extent); + rewrite(sf.geometry, z, nextzoom, maxzoom, sf.bbox, tx, ty, buffer, within, geompos, geomfile, fname, sf.t, sf.layer, sf.feature_minzoom, child_shards, max_zoom_increment, sf.seq, sf.tippecanoe_minzoom, sf.tippecanoe_maxzoom, sf.segment, initial_x, initial_y, sf.keys, sf.values, sf.has_id, sf.id, sf.index, sf.label_point, sf.extent); } } @@ -1565,10 +1590,8 @@ serial_feature next_feature(FILE *geoms, std::atomic *geompos_in, cha } struct run_prefilter_args { - FILE *geoms = NULL; + decompressor *geoms = NULL; std::atomic *geompos_in = NULL; - char *metabase = NULL; - long long *meta_off = NULL; int z = 0; unsigned tx = 0; unsigned ty = 0; @@ -1585,7 +1608,7 @@ struct run_prefilter_args { long long alongminus = 0; int buffer = 0; int *within = NULL; - FILE **geomfile = NULL; + compressor **geomfile = NULL; std::atomic *geompos = NULL; std::atomic *oprogress = NULL; double todo = 0; @@ -1597,6 +1620,7 @@ struct run_prefilter_args { FILE *prefilter_fp = NULL; struct json_object *filter = NULL; bool first_time = false; + bool compressed = false; }; void *run_prefilter(void *v) { @@ -1604,7 +1628,7 @@ void *run_prefilter(void *v) { json_writer state(rpa->prefilter_fp); while (1) { - serial_feature sf = next_feature(rpa->geoms, rpa->geompos_in, rpa->metabase, rpa->meta_off, rpa->z, rpa->tx, rpa->ty, rpa->initial_x, rpa->initial_y, rpa->original_features, rpa->unclipped_features, rpa->nextzoom, rpa->maxzoom, rpa->minzoom, rpa->max_zoom_increment, rpa->pass, rpa->along, rpa->alongminus, rpa->buffer, rpa->within, rpa->geomfile, rpa->geompos, rpa->oprogress, rpa->todo, rpa->fname, rpa->child_shards, rpa->filter, rpa->stringpool, rpa->pool_off, rpa->layer_unmaps, rpa->first_time); + serial_feature sf = next_feature(rpa->geoms, rpa->geompos_in, rpa->z, rpa->tx, rpa->ty, rpa->initial_x, rpa->initial_y, rpa->original_features, rpa->unclipped_features, rpa->nextzoom, rpa->maxzoom, rpa->minzoom, rpa->max_zoom_increment, rpa->pass, rpa->along, rpa->alongminus, rpa->buffer, rpa->within, rpa->geomfile, rpa->geompos, rpa->oprogress, rpa->todo, rpa->fname, rpa->child_shards, rpa->filter, rpa->stringpool, rpa->pool_off, rpa->layer_unmaps, rpa->first_time, rpa->compressed); if (sf.t < 0) { break; } @@ -1854,7 +1878,7 @@ void add_sample_to(std::vector &vals, T val, size_t &increment, size_t seq) { } } -long long write_tile(FILE *geoms, std::atomic *geompos_in, char *metabase, char *stringpool, int z, const unsigned tx, const unsigned ty, const int detail, int min_detail, sqlite3 *outdb, const char *outdir, int buffer, const char *fname, FILE **geomfile, int minzoom, int maxzoom, double todo, std::atomic *along, long long alongminus, double gamma, int child_shards, long long *meta_off, long long *pool_off, unsigned *initial_x, unsigned *initial_y, std::atomic *running, double simplification, std::vector> *layermaps, std::vector> *layer_unmaps, size_t tiling_seg, size_t pass, unsigned long long mingap, long long minextent, double fraction, const char *prefilter, const char *postfilter, struct json_object *filter, write_tile_args *arg, atomic_strategy *strategy) { +long long write_tile(decompressor *geoms, std::atomic *geompos_in, char *stringpool, int z, const unsigned tx, const unsigned ty, const int detail, int min_detail, sqlite3 *outdb, const char *outdir, int buffer, const char *fname, compressor **geomfile, int minzoom, int maxzoom, double todo, std::atomic *along, long long alongminus, double gamma, int child_shards, long long *pool_off, unsigned *initial_x, unsigned *initial_y, std::atomic *running, double simplification, std::vector> *layermaps, std::vector> *layer_unmaps, size_t tiling_seg, size_t pass, unsigned long long mingap, long long minextent, double fraction, const char *prefilter, const char *postfilter, struct json_object *filter, write_tile_args *arg, atomic_strategy *strategy, bool compressed_input) { double merge_fraction = 1; double mingap_fraction = 1; double minextent_fraction = 1; @@ -1926,11 +1950,22 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta } if (*geompos_in != og) { - if (fseek(geoms, og, SEEK_SET) != 0) { + if (compressed_input) { + if (geoms->within) { + geoms->end(geompos_in); + } + + geoms->begin(); + } + + if (fseek(geoms->fp, og, SEEK_SET) != 0) { perror("fseek geom"); exit(EXIT_SEEK); } + *geompos_in = og; + geoms->zs.avail_in = 0; + geoms->zs.avail_out = 0; } int prefilter_write = -1, prefilter_read = -1; @@ -1958,8 +1993,6 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta rpa.geoms = geoms; rpa.geompos_in = geompos_in; - rpa.metabase = metabase; - rpa.meta_off = meta_off; rpa.z = z; rpa.tx = tx; rpa.ty = ty; @@ -1988,6 +2021,7 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta rpa.pool_off = pool_off; rpa.filter = filter; rpa.first_time = first_time; + rpa.compressed = compressed_input; if (pthread_create(&prefilter_writer, NULL, run_prefilter, &rpa) != 0) { perror("pthread_create (prefilter writer)"); @@ -2007,7 +2041,7 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta ssize_t which_partial = -1; if (prefilter == NULL) { - sf = next_feature(geoms, geompos_in, metabase, meta_off, z, tx, ty, initial_x, initial_y, &original_features, &unclipped_features, nextzoom, maxzoom, minzoom, max_zoom_increment, pass, along, alongminus, buffer, within, geomfile, geompos, &oprogress, todo, fname, child_shards, filter, stringpool, pool_off, layer_unmaps, first_time); + sf = next_feature(geoms, geompos_in, z, tx, ty, initial_x, initial_y, &original_features, &unclipped_features, nextzoom, maxzoom, minzoom, max_zoom_increment, pass, along, alongminus, buffer, within, geomfile, geompos, &oprogress, todo, fname, child_shards, filter, stringpool, pool_off, layer_unmaps, first_time, compressed_input); } else { sf = parse_feature(prefilter_jp, z, tx, ty, layermaps, tiling_seg, layer_unmaps, postfilter != NULL); } @@ -2414,7 +2448,8 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta int j; for (j = 0; j < child_shards; j++) { if (within[j]) { - serialize_byte(geomfile[j], -2, &geompos[j], fname); + geomfile[j]->serialize_long_long(0, &geompos[j], fname); // EOF + geomfile[j]->end(&geompos[j], fname); within[j] = 0; } } @@ -2577,6 +2612,7 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta if (progress >= oprogress + 0.1) { if (!quiet && !quiet_progress && progress_time()) { fprintf(stderr, " %3.1f%% %d/%u/%u \r", progress, z, tx, ty); + fflush(stderr); } if (logger.json_enabled && progress_time()) { logger.progress_tile(progress); @@ -2672,7 +2708,7 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta std::string pbf = tile.encode(); if (!prevent[P_TILE_COMPRESSION]) { - compress(pbf, compressed); + compress(pbf, compressed, true); } else { compressed = pbf; } @@ -2818,7 +2854,15 @@ void *run_thread(void *vargs) { continue; } - // printf("%lld of geom_size\n", (long long) geom_size[j]); + // If this is zoom level 0, the geomfd will be uncompressed data, + // because (at least for now) it needs to stay uncompressed during + // the sort and post-sort maxzoom calculation and fixup so that + // the sort can rearrange individual features and the fixup can + // then adjust their minzooms without decompressing and recompressing + // each feature. + // + // In higher zooms, it will be compressed data written out during the + // previous zoom. FILE *geom = fdopen(arg->geomfd[j], "rb"); if (geom == NULL) { @@ -2826,6 +2870,8 @@ void *run_thread(void *vargs) { exit(EXIT_OPEN); } + decompressor dc(geom); + std::atomic geompos(0); long long prevgeom = 0; @@ -2833,17 +2879,31 @@ void *run_thread(void *vargs) { int z; unsigned x, y; - if (!deserialize_int_io(geom, &z, &geompos)) { + // These z/x/y are uncompressed so we can seek to the start of the + // compressed feature data that immediately follows. + + if (!dc.deserialize_int(&z, &geompos)) { break; } - deserialize_uint_io(geom, &x, &geompos); - deserialize_uint_io(geom, &y, &geompos); + dc.deserialize_uint(&x, &geompos); + dc.deserialize_uint(&y, &geompos); +#if 0 + // currently broken because also requires tracking nextzoom when skipping zooms + if (z != arg->zoom) { + fprintf(stderr, "Expected zoom %d, found zoom %d\n", arg->zoom, z); + exit(EXIT_IMPOSSIBLE); + } +#endif + + if (arg->compressed) { + dc.begin(); + } arg->wrote_zoom = z; // fprintf(stderr, "%d/%u/%u\n", z, x, y); - long long len = write_tile(geom, &geompos, arg->metabase, arg->stringpool, z, x, y, z == arg->maxzoom ? arg->full_detail : arg->low_detail, arg->min_detail, arg->outdb, arg->outdir, arg->buffer, arg->fname, arg->geomfile, arg->minzoom, arg->maxzoom, arg->todo, arg->along, geompos, arg->gamma, arg->child_shards, arg->meta_off, arg->pool_off, arg->initial_x, arg->initial_y, arg->running, arg->simplification, arg->layermaps, arg->layer_unmaps, arg->tiling_seg, arg->pass, arg->mingap, arg->minextent, arg->fraction, arg->prefilter, arg->postfilter, arg->filter, arg, arg->strategy); + long long len = write_tile(&dc, &geompos, arg->stringpool, z, x, y, z == arg->maxzoom ? arg->full_detail : arg->low_detail, arg->min_detail, arg->outdb, arg->outdir, arg->buffer, arg->fname, arg->geomfile, arg->minzoom, arg->maxzoom, arg->todo, arg->along, geompos, arg->gamma, arg->child_shards, arg->pool_off, arg->initial_x, arg->initial_y, arg->running, arg->simplification, arg->layermaps, arg->layer_unmaps, arg->tiling_seg, arg->pass, arg->mingap, arg->minextent, arg->fraction, arg->prefilter, arg->postfilter, arg->filter, arg, arg->strategy, arg->compressed); if (len < 0) { int *err = &arg->err; @@ -2908,7 +2968,7 @@ void *run_thread(void *vargs) { return NULL; } -int traverse_zooms(int *geomfd, off_t *geom_size, char *metabase, char *stringpool, std::atomic *midx, std::atomic *midy, int &maxzoom, int minzoom, sqlite3 *outdb, const char *outdir, int buffer, const char *fname, const char *tmpdir, double gamma, int full_detail, int low_detail, int min_detail, long long *meta_off, long long *pool_off, unsigned *initial_x, unsigned *initial_y, double simplification, double maxzoom_simplification, std::vector> &layermaps, const char *prefilter, const char *postfilter, std::map const *attribute_accum, struct json_object *filter, std::vector &strategies) { +int traverse_zooms(int *geomfd, off_t *geom_size, char *stringpool, std::atomic *midx, std::atomic *midy, int &maxzoom, int minzoom, sqlite3 *outdb, const char *outdir, int buffer, const char *fname, const char *tmpdir, double gamma, int full_detail, int low_detail, int min_detail, long long *pool_off, unsigned *initial_x, unsigned *initial_y, double simplification, double maxzoom_simplification, std::vector> &layermaps, const char *prefilter, const char *postfilter, std::map const *attribute_accum, struct json_object *filter, std::vector &strategies, int iz) { last_progress = 0; // The existing layermaps are one table per input thread. @@ -2933,10 +2993,11 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *metabase, char *stringpo } int z; - for (z = 0; z <= maxzoom; z++) { + for (z = iz; z <= maxzoom; z++) { std::atomic most(0); - FILE *sub[TEMP_FILES]; + compressor compressors[TEMP_FILES]; + compressor *sub[TEMP_FILES]; int subfd[TEMP_FILES]; for (size_t j = 0; j < TEMP_FILES; j++) { char geomname[strlen(tmpdir) + strlen("/geom.XXXXXXXX" XSTRINGIFY(INT_MAX)) + 1]; @@ -2947,11 +3008,13 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *metabase, char *stringpo perror(geomname); exit(EXIT_OPEN); } - sub[j] = fopen_oflag(geomname, "wb", O_WRONLY | O_CLOEXEC); - if (sub[j] == NULL) { + FILE *fp = fopen_oflag(geomname, "wb", O_WRONLY | O_CLOEXEC); + if (fp == NULL) { perror(geomname); exit(EXIT_OPEN); } + compressors[j] = compressor(fp); + sub[j] = &compressors[j]; unlink(geomname); } @@ -2970,7 +3033,7 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *metabase, char *stringpo } // XXX is it useful to divide further if we know we are skipping // some zoom levels? Is it faster to have fewer CPUs working on - // sharding, but more deeply, or fewer CPUs, less deeply? + // sharding, but more deeply, or more CPUs, less deeply? if (threads > useful_threads) { threads = useful_threads; } @@ -3055,7 +3118,6 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *metabase, char *stringpo atomic_strategy strategy; for (size_t thread = 0; thread < threads; thread++) { - args[thread].metabase = metabase; args[thread].stringpool = stringpool; args[thread].min_detail = min_detail; args[thread].outdb = outdb; // locked with db_lock @@ -3092,7 +3154,6 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *metabase, char *stringpo args[thread].full_detail = full_detail; args[thread].low_detail = low_detail; args[thread].most = &most; // locked with var_lock - args[thread].meta_off = meta_off; args[thread].pool_off = pool_off; args[thread].initial_x = initial_x; args[thread].initial_y = initial_y; @@ -3110,6 +3171,8 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *metabase, char *stringpo args[thread].wrote_zoom = -1; args[thread].still_dropping = false; args[thread].strategy = &strategy; + args[thread].zoom = z; + args[thread].compressed = (z != iz); if (pthread_create(&pthreads[thread], NULL, run_thread, &args[thread]) != 0) { perror("pthread_create"); @@ -3188,7 +3251,7 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *metabase, char *stringpo exit(EXIT_CLOSE); } } - if (fclose(sub[j]) != 0) { + if (sub[j]->fclose() != 0) { perror("close subfile"); exit(EXIT_CLOSE); } diff --git a/tile.hpp b/tile.hpp index 913ae81de..1159f3761 100644 --- a/tile.hpp +++ b/tile.hpp @@ -61,9 +61,9 @@ struct strategy { strategy() = default; }; -long long write_tile(char **geom, char *metabase, char *stringpool, unsigned *file_bbox, int z, unsigned x, unsigned y, int detail, int min_detail, int basezoom, sqlite3 *outdb, const char *outdir, double droprate, int buffer, const char *fname, FILE **geomfile, int file_minzoom, int file_maxzoom, double todo, char *geomstart, long long along, double gamma, int nlayers, std::atomic *strategy); +long long write_tile(char **geom, char *stringpool, unsigned *file_bbox, int z, unsigned x, unsigned y, int detail, int min_detail, int basezoom, sqlite3 *outdb, const char *outdir, double droprate, int buffer, const char *fname, FILE **geomfile, int file_minzoom, int file_maxzoom, double todo, char *geomstart, long long along, double gamma, int nlayers, std::atomic *strategy); -int traverse_zooms(int *geomfd, off_t *geom_size, char *metabase, char *stringpool, std::atomic *midx, std::atomic *midy, int &maxzoom, int minzoom, sqlite3 *outdb, const char *outdir, int buffer, const char *fname, const char *tmpdir, double gamma, int full_detail, int low_detail, int min_detail, long long *meta_off, long long *pool_off, unsigned *initial_x, unsigned *initial_y, double simplification, double maxzoom_simplification, std::vector > &layermap, const char *prefilter, const char *postfilter, std::map const *attribute_accum, struct json_object *filter, std::vector &strategies); +int traverse_zooms(int *geomfd, off_t *geom_size, char *stringpool, std::atomic *midx, std::atomic *midy, int &maxzoom, int minzoom, sqlite3 *outdb, const char *outdir, int buffer, const char *fname, const char *tmpdir, double gamma, int full_detail, int low_detail, int min_detail, long long *pool_off, unsigned *initial_x, unsigned *initial_y, double simplification, double maxzoom_simplification, std::vector > &layermap, const char *prefilter, const char *postfilter, std::map const *attribute_accum, struct json_object *filter, std::vector &strategies, int iz); int manage_gap(unsigned long long index, unsigned long long *previndex, double scale, double gamma, double *gap); diff --git a/version.hpp b/version.hpp index 378dcd9cf..8359829f7 100644 --- a/version.hpp +++ b/version.hpp @@ -1,6 +1,6 @@ #ifndef VERSION_HPP #define VERSION_HPP -#define VERSION "v2.22.0" +#define VERSION "v2.23.0" #endif